We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5362cdb commit 761632cCopy full SHA for 761632c
library/src/main/java/com/nostra13/universalimageloader/cache/disc/impl/ext/DiskLruCache.java
@@ -964,11 +964,11 @@ private IOException invalidLengths(String[] strings) throws IOException {
964
}
965
966
public File getCleanFile(int i) {
967
- return new File(directory, key + "" + i);
+ return new File(directory, key + "." + i);
968
969
970
public File getDirtyFile(int i) {
971
- return new File(directory, key + "" + i + ".tmp");
+ return new File(directory, key + "." + i + ".tmp");
972
973
974
0 commit comments