fix bug in cache cleanup on 21+ introduced in cbd6da5

!379 was merged without the emulator tests passing.  This fixes that.
This commit is contained in:
Hans-Christoph Steiner 2016-08-22 19:58:13 +02:00
parent 9e10d46449
commit a1ae08cd1e

View File

@ -167,7 +167,7 @@ public class CleanCacheService extends IntentService {
f.delete(); f.delete();
} }
} else { } else {
CleanCacheService21.deleteIfOld(f, millisAgo); CleanCacheService21.deleteIfOld(f, olderThan);
} }
} }
} }