mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-16 19:33:44 +00:00
Fix the issues with = in people's client nicknames
This commit is contained in:
@@ -138,6 +138,9 @@ class TS3Proto():
|
|||||||
v = key.strip().split('=')
|
v = key.strip().split('=')
|
||||||
if len(v) > 1:
|
if len(v) > 1:
|
||||||
# Key
|
# Key
|
||||||
|
if len > 2:
|
||||||
|
# Fix the stupidities in TS3 escaping
|
||||||
|
v = [v[0], '='.join(v[1:])]
|
||||||
key, value = v
|
key, value = v
|
||||||
keys[key] = self._unescape_str(value)
|
keys[key] = self._unescape_str(value)
|
||||||
elif v[0][0] == '-':
|
elif v[0][0] == '-':
|
||||||
|
|||||||
Reference in New Issue
Block a user