Remove 'ForbiddenOperationException' from auth error message

This commit is contained in:
yushijinhun 2020-08-15 17:13:43 +08:00 committed by Yuhui Huang
parent 48e2fcc601
commit 88c595dab2

View File

@ -317,6 +317,8 @@ public class AddAccountPane extends StackPane {
return i18n("account.failed.invalid_token");
else if (remoteMessage.contains("Invalid username or password"))
return i18n("account.failed.invalid_password");
else
return remoteMessage;
}
return exception.getMessage();
} else if (exception instanceof AuthlibInjectorDownloadException) {