mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-13 06:20:16 +02:00
Corrected indexoutofrange exception when handling certain serverqueries
This commit is contained in:
parent
239934cd2f
commit
3614c78971
@ -139,11 +139,12 @@ class TS3Proto():
|
|||||||
v = [v[0], '='.join(v[1:])]
|
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] and v[0][0] == '-':
|
elif (not v == ['']):
|
||||||
# Option
|
if v[0][0] and v[0][0] == '-':
|
||||||
opts.append(v[0][1:])
|
# Option
|
||||||
else:
|
opts.append(v[0][1:])
|
||||||
command = v[0]
|
else:
|
||||||
|
command = v[0]
|
||||||
|
|
||||||
d = {'keys': keys, 'opts': opts}
|
d = {'keys': keys, 'opts': opts}
|
||||||
if command:
|
if command:
|
||||||
@ -241,4 +242,4 @@ class TS3Server(TS3Proto):
|
|||||||
@type id: int
|
@type id: int
|
||||||
"""
|
"""
|
||||||
if self._connected and id > 0:
|
if self._connected and id > 0:
|
||||||
self.send_command('use', keys={'sid': id})
|
self.send_command('use', keys={'sid': id})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user