Delete pending missions with invalid storage
This commit is contained in:
parent
fd4e1b8d2c
commit
a9e21a35ea
|
@ -149,7 +149,7 @@ public class DownloadManager {
|
|||
if (sub.getName().equals(".tmp")) continue;
|
||||
|
||||
DownloadMission mis = Utility.readFromFile(sub);
|
||||
if (mis == null || mis.isFinished()) {
|
||||
if (mis == null || mis.isFinished() || mis.hasInvalidStorage()) {
|
||||
//noinspection ResultOfMethodCallIgnored
|
||||
sub.delete();
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue