diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2013-08-03 13:58:31 +0200 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2013-08-03 13:58:31 +0200 |
commit | 9ba3dc0d823b786700010a60d38f47c802101d27 (patch) | |
tree | 89b74eff993fdcb3b373c64695c72d534f1a80cd /src/de/danoeh/antennapod/activity | |
parent | 2071793e6aa1a106744078fcbcf7c0529ed315c4 (diff) | |
download | AntennaPod-9ba3dc0d823b786700010a60d38f47c802101d27.zip |
Improved DownloadService, several bugfixes
- DownloadService should now terminate properly as soon as all downloads have been completed.
- Notification bug ("0 downloads left" notification) should be fixed
Diffstat (limited to 'src/de/danoeh/antennapod/activity')
-rw-r--r-- | src/de/danoeh/antennapod/activity/OnlineFeedViewActivity.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/de/danoeh/antennapod/activity/OnlineFeedViewActivity.java b/src/de/danoeh/antennapod/activity/OnlineFeedViewActivity.java index deb4602bb..50ff38e22 100644 --- a/src/de/danoeh/antennapod/activity/OnlineFeedViewActivity.java +++ b/src/de/danoeh/antennapod/activity/OnlineFeedViewActivity.java @@ -122,9 +122,11 @@ public abstract class OnlineFeedViewActivity extends SherlockFragmentActivity { feed.setFile_url(fileUrl); DownloadRequest request = new DownloadRequest(feed.getFile_url(), feed.getDownload_url(), "OnlineFeed", 0, Feed.FEEDFILETYPE_FEED); + /* TODO update HttpDownloader httpDownloader = new HttpDownloader(downloaderCallback, request); httpDownloader.start(); + */ } /** Displays a progress indicator. */ |