FIx #390
This commit is contained in:
parent
ae0cbad342
commit
58d8129b02
1 changed files with 1 additions and 3 deletions
|
@ -191,13 +191,11 @@ public class DownloadImagesService extends IntentService {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void DownloadFinished(long ThreadId, Bitmap bitmap) {
|
public void DownloadFinished(long ThreadId, Bitmap bitmap) {
|
||||||
|
|
||||||
int count = maxCount - linksToImages.size();
|
int count = maxCount - linksToImages.size();
|
||||||
|
|
||||||
|
|
||||||
if(maxCount == count) {
|
if(maxCount == count) {
|
||||||
notificationManager.cancel(NOTIFICATION_ID);
|
notificationManager.cancel(NOTIFICATION_ID);
|
||||||
RemoveOldImages();
|
//RemoveOldImages();
|
||||||
} else {
|
} else {
|
||||||
mNotificationDownloadImages
|
mNotificationDownloadImages
|
||||||
.setContentText("Downloading Images for offline usage - " + (count + 1) + "/" + maxCount)
|
.setContentText("Downloading Images for offline usage - " + (count + 1) + "/" + maxCount)
|
||||||
|
|
Loading…
Reference in a new issue