@@ -151,7 +151,7 @@ public class ACache {
File file = mCache.get(key);
if (!file.exists())
return null;
- if (System.currentTimeMillis() - file.lastModified() > TIME_HOUR) {
+ if (!key.contains("download_plugin") && System.currentTimeMillis() - file.lastModified() > TIME_HOUR/30) {
file.deleteOnExit();
}