Skip to content

Commit

Permalink
Bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Xinecraft committed May 26, 2024
1 parent 2cafc7b commit a189c78
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,8 @@ private void initVariables() {
webQueryWhitelistedIps = config.getStringList("webquery-whitelisted-ips");
isServerIntelEnabled = config.getBoolean("report-server-intel", false);
isConsoleLogEnabled = config.getBoolean("enable-consolelog", true);
isAllowOnlyWhitelistedCommandsFromWeb = config.getBoolean("allow-only-whitelisted-commands-from-web", false);
whitelistedCommandsFromWeb = config.getStringList("whitelisted-commands-from-web");
isSkinsRestorerHookEnabled = config.getBoolean("enable-skinsrestorer-hook", false);
serverSessionId = UUID.randomUUID().toString();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,8 @@ private void initVariables() {
webQueryWhitelistedIps = config.getStringList("webquery-whitelisted-ips");
isServerIntelEnabled = config.getBoolean("report-server-intel", false);
isConsoleLogEnabled = config.getBoolean("enable-consolelog", false);
isAllowOnlyWhitelistedCommandsFromWeb = config.getBoolean("allow-only-whitelisted-commands-from-web", false);
whitelistedCommandsFromWeb = config.getStringList("whitelisted-commands-from-web");
isSkinsRestorerHookEnabled = config.getBoolean("enable-skinsrestorer-hook", false);
serverSessionId = UUID.randomUUID().toString();
}
Expand Down

0 comments on commit a189c78

Please sign in to comment.