summaryrefslogtreecommitdiff
path: root/src/de/podfetcher/activity
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-06-16 13:21:41 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-06-16 13:21:41 +0200
commit26c8772e0a60aa916dceff4ec4d4eb7af2a19460 (patch)
tree6d48ff67f4a5e207eca4111ca69da2084fe4353e /src/de/podfetcher/activity
parentc41605ef3b9a21025d3625d577b53d63f64f1074 (diff)
downloadAntennaPod-26c8772e0a60aa916dceff4ec4d4eb7af2a19460.zip
Cleaned up the Download requester
Diffstat (limited to 'src/de/podfetcher/activity')
-rw-r--r--src/de/podfetcher/activity/DownloadActivity.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/de/podfetcher/activity/DownloadActivity.java b/src/de/podfetcher/activity/DownloadActivity.java
index 48a18eb0f..0da47053a 100644
--- a/src/de/podfetcher/activity/DownloadActivity.java
+++ b/src/de/podfetcher/activity/DownloadActivity.java
@@ -22,8 +22,8 @@ public class DownloadActivity extends SherlockListActivity {
super.onCreate(savedInstanceState);
requester = DownloadRequester.getInstance();
- observer.execute(requester.getMediaDownloads().toArray(
- new FeedFile[requester.getMediaDownloads().size()]));
+ observer.execute(requester.getDownloads().toArray(
+ new FeedFile[requester.getDownloads().size()]));
}