mirror of
https://github.com/SKCraft/Launcher.git
synced 2024-11-27 12:46:22 +01:00
Made instance name detection case in-sensitive.
This commit is contained in:
parent
1c3b0a2722
commit
3b1bc3f851
@ -110,7 +110,7 @@ public class InstanceList {
|
||||
boolean foundLocal = false;
|
||||
|
||||
for (Instance instance : local) {
|
||||
if (instance.getName().equals(manifest.getName())) {
|
||||
if (instance.getName().equalsIgnoreCase(manifest.getName())) {
|
||||
foundLocal = true;
|
||||
|
||||
instance.setTitle(manifest.getTitle());
|
||||
|
Loading…
Reference in New Issue
Block a user