@@ -73,7 +73,7 @@ public void remove(String url) {
         memoryCache.remove(getCacheKey(url));
 
         // Remove from file cache
-        File f = new File(diskCachePath, url);
+        File f = new File(diskCachePath, getCacheKey(url));
         if(f.exists() && f.isFile()) {
             f.delete();
         }
@@ -156,4 +156,4 @@ private String getCacheKey(String url) {
             return url.replaceAll("[.:/,%?&=]", "+").replaceAll("[+]+", "+");
         }
     }
-}
\ No newline at end of file
+}