mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
Don't use cache filenames that are impossible to debug.
This commit is contained in:
parent
21e36a5b1d
commit
cc76ea12ad
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue