mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 03:31:15 +03:00
IOOBE Fix #2
А если профайл удалили, а у пользователя до сих пор выбран этот сервер?! Верно! Крушиться с истериками! Либо подыматься до последнего существующего клиента, что и подразумевает данная правка.
This commit is contained in:
parent
ed7a09d223
commit
5d570ed022
1 changed files with 4 additions and 1 deletions
|
@ -293,8 +293,11 @@ function updateProfilesList(profiles) {
|
|||
index++;
|
||||
});
|
||||
LogHelper.debug("Load selected %d profile",settings.profile);
|
||||
if(profiles.length > 0)
|
||||
if(profiles.length > 0) {
|
||||
if(settings.profile >= profiles.length)
|
||||
settings.profile = profiles.length-1;
|
||||
serverHolder.set(serverList.getChildren().get(settings.profile));
|
||||
}
|
||||
}
|
||||
|
||||
function pingServer(btn) {
|
||||
|
|
Loading…
Reference in a new issue