Fix downloads with embedded covers
Previously, this would always fail with embedded covers.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user