Fix downloads with embedded covers

Previously, this would always fail with
embedded covers.
master
jvoisin 5 years ago
parent 4f59c72bbe
commit e283ac46a8
  1. 2
      airsonic-main/src/main/java/org/airsonic/player/controller/DownloadController.java

@ -235,7 +235,7 @@ public class DownloadController implements LastModified {
for (MediaFile mediaFile : filesToDownload) {
zip(out, mediaFile.getParentFile(), mediaFile.getFile(), status, range);
if (coverArtFile != null && coverArtFile.exists()) {
if (mediaFile.getFile().getCanonicalPath() == coverArtFile.getCanonicalPath()) {
if (mediaFile.getFile().getCanonicalPath().equals(coverArtFile.getCanonicalPath())) {
cover_embedded = true;
}
}

Loading…
Cancel
Save