Skip to content

Commit

Permalink
fix: Replace LimboAuth occurrence in exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
bivashy committed Nov 22, 2023
1 parent 4254c6e commit bc1b21b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public Stream<PortableAccount> 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);
}
}

Expand Down

0 comments on commit bc1b21b

Please sign in to comment.