mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
[Android] Make sure the file extension check isn't case sensitive
This commit is contained in:
parent
265c6408d6
commit
b57cb30c41
@ -45,7 +45,7 @@ public class FileListItem implements Comparable<FileListItem>
|
||||
Set<String> allowedExtensions = new HashSet<String>(Arrays.asList(".dff", ".dol", ".elf", ".gcm", ".gcz", ".iso", ".wad", ".wbfs"));
|
||||
|
||||
// Check that the file has an extension we care about before trying to read out of it.
|
||||
if (allowedExtensions.contains(fileExtension))
|
||||
if (allowedExtensions.contains(fileExtension.toLowerCase()))
|
||||
{
|
||||
// Add 1 because 0 = TYPE_FOLDER
|
||||
mType = NativeLibrary.GetPlatform(mPath) + 1;
|
||||
|
@ -181,7 +181,7 @@ public final class GameDatabase extends SQLiteOpenHelper
|
||||
String fileExtension = filePath.substring(extensionStart);
|
||||
|
||||
// Check that the file has an extension we care about before trying to read out of it.
|
||||
if (allowedExtensions.contains(fileExtension))
|
||||
if (allowedExtensions.contains(fileExtension.toLowerCase()))
|
||||
{
|
||||
String name = NativeLibrary.GetTitle(filePath);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user