mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-27 13:15:44 +01:00
parent
8c6586f008
commit
1dffd462a5
@ -762,7 +762,8 @@ public final class ConfigKeys {
|
||||
* @return true if the value should be censored
|
||||
*/
|
||||
public static boolean shouldCensorValue(final String path) {
|
||||
return path.contains("password") || path.contains("uri");
|
||||
final String lower = path.toLowerCase(Locale.ROOT);
|
||||
return lower.contains("password") || lower.contains("uri");
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user