change file check

This commit is contained in:
mszkb 2018-01-20 18:05:54 +01:00
parent 26a52809da
commit cec606c4f0

View File

@ -398,11 +398,11 @@ public class Utils {
} }
// At last, check if the File with the original exists // At last, check if the File with the original exists
File f = new File(original); File f = new File(lowerCaseOriginal);
if(f.exists()) { if(f.exists()) {
return original;
} else {
return lowerCaseOriginal; return lowerCaseOriginal;
} else {
return original;
} }
} }