From bc1b21b38f3a36b7df7d468800869475b3ee760c Mon Sep 17 00:00:00 2001 From: bivashy Date: Wed, 22 Nov 2023 16:22:53 +0600 Subject: [PATCH] fix: Replace LimboAuth occurrence in exception message --- .../database/importing/source/LoginSecurityImportSource.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/me/mastercapexd/auth/database/importing/source/LoginSecurityImportSource.java b/core/src/main/java/me/mastercapexd/auth/database/importing/source/LoginSecurityImportSource.java index f06f57ed..8cfda714 100644 --- a/core/src/main/java/me/mastercapexd/auth/database/importing/source/LoginSecurityImportSource.java +++ b/core/src/main/java/me/mastercapexd/auth/database/importing/source/LoginSecurityImportSource.java @@ -32,7 +32,7 @@ public Stream sourceAccounts() { String tableName = settings.getProperty("table-name").orElse("ls_players"); return databaseStream.execute(String.format(QUERY_ALL_ACCOUNTS, tableName), new AccountRowMapper()); } catch (Exception e) { - throw new ImportingException("Exception occurred during LimboAuth accounts resolution", e); + throw new ImportingException("Exception occurred during LoginSecurity accounts resolution", e); } }