mirror of
https://github.com/TuxCoding/FastLogin.git
synced 2025-07-29 18:27:36 +02:00
Lowercase the namespace correctly
This commit is contained in:
@ -11,7 +11,7 @@ public class NamespaceKey {
|
||||
this.namespace = namespace.toLowerCase();
|
||||
this.key = key.toLowerCase();
|
||||
|
||||
this.combined = namespace + ':' + key;
|
||||
this.combined = this.namespace + ':' + this.key;
|
||||
}
|
||||
|
||||
public String getCombinedName() {
|
||||
|
Reference in New Issue
Block a user