Disabled downloading of episode images. closes #390

Uses too much bandwidth
This commit is contained in:
daniel oeh 2014-03-31 19:47:06 +02:00
parent b2de7512f4
commit 9abf27ca2f
1 changed files with 0 additions and 26 deletions

View File

@ -678,32 +678,6 @@ public class DownloadService extends Service {
);
}
}
// download FeedItem images if provided and not downloaded
for (FeedItem item : savedFeed.getItems()) {
if (item.hasItemImage() && (!item.getImage().isDownloaded())) {
if (BuildConfig.DEBUG)
Log.d(TAG, "Item has image; Downloading....");
try {
requester.downloadImage(DownloadService.this,
item.getImage());
} catch (DownloadRequestException e) {
e.printStackTrace();
DBWriter.addDownloadStatus(
DownloadService.this,
new DownloadStatus(
item.getImage(),
item
.getImage()
.getHumanReadableIdentifier(),
DownloadError.ERROR_REQUEST_ERROR,
false, e.getMessage()
)
);
}
}
}
} catch (SAXException e) {
successful = false;
e.printStackTrace();