mirror of
https://github.com/AntennaPod/AntennaPod.git
synced 2025-01-01 19:52:26 +01:00
Fixed NPE in DownloadRequester
This commit is contained in:
parent
1dd5c19eea
commit
9d6225b022
@ -202,7 +202,9 @@ public class DownloadRequester implements DownloadStateProvider {
|
||||
|
||||
DownloadRequest request = createRequest(feed, null, new File(getFeedfilePath(), getFeedfileName(feed)),
|
||||
true, username, password, lastModified, true, args);
|
||||
download(context, request);
|
||||
if (request != null) {
|
||||
download(context, request);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user