Don't use cache filenames that are impossible to debug.

This commit is contained in:
dosiecki 2015-02-24 16:14:08 -08:00
parent 21e36a5b1d
commit cc76ea12ad

View file

@ -97,7 +97,7 @@ public class ImageCache {
if (! m.find()) {
return null;
}
String fileName = Integer.toString(url.hashCode()) + m.group(1);
String fileName = Integer.toString(Math.abs(url.hashCode())) + m.group(1);
return fileName;
}