А если профайл удалили, а у пользователя до сих пор выбран этот сервер?!
Верно! Крушиться с истериками!
Либо подыматься до последнего существующего клиента, что и подразумевает данная правка.
This commit is contained in:
Yaroslavik 2018-12-14 01:05:40 +02:00 committed by Gravit
parent ed7a09d223
commit 5d570ed022

View file

@ -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) {