diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2012-06-24 22:57:29 +0200 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2012-06-24 22:57:29 +0200 |
commit | a2e0c6eecc7430ec9399be8694be7e5dc9ffb614 (patch) | |
tree | 08abf8896b452911e51ff97c05481c2d4e7692f6 /src/de/podfetcher/feed | |
parent | fc7d06aaf429a0a1ab30b38a7fdc103144a6c20e (diff) | |
download | AntennaPod-a2e0c6eecc7430ec9399be8694be7e5dc9ffb614.zip |
Bugfixes + UI-improvements
Diffstat (limited to 'src/de/podfetcher/feed')
-rw-r--r-- | src/de/podfetcher/feed/FeedFile.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/de/podfetcher/feed/FeedFile.java b/src/de/podfetcher/feed/FeedFile.java index f06f79a62..2a1c4eb2a 100644 --- a/src/de/podfetcher/feed/FeedFile.java +++ b/src/de/podfetcher/feed/FeedFile.java @@ -48,7 +48,7 @@ public abstract class FeedFile extends FeedComponent { } public boolean isDownloading() { - return downloaded == false && file_url != null; + return downloadId != 0; } |