fix for the rare occassion that the client has no client_type
This commit is contained in:
parent
712faa876c
commit
ee3e081c3c
5
myTS3.py
5
myTS3.py
|
@ -307,13 +307,16 @@ class TSbot:
|
||||||
except ts3.query.TS3QueryError as e:
|
except ts3.query.TS3QueryError as e:
|
||||||
self.pipeOut(f"given clid {clid} returned error:\n{e}", lvl="ERROR")
|
self.pipeOut(f"given clid {clid} returned error:\n{e}", lvl="ERROR")
|
||||||
return True
|
return True
|
||||||
|
try:
|
||||||
if client[0]["client_type"] == "1":
|
if client[0]["client_type"] == "1":
|
||||||
self.pipeOut(f"[{clid}] ISQUERY: True")
|
self.pipeOut(f"[{clid}] ISQUERY: True")
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
self.pipeOut(f"[{clid}] ISQUERY: False")
|
self.pipeOut(f"[{clid}] ISQUERY: False")
|
||||||
return False
|
return False
|
||||||
|
except KeyError as e:
|
||||||
|
self.pipeOut(f"Error [{e}] on client [{client.__dict__}] ")
|
||||||
|
return True # Da wahrscheinlich ein Query Client
|
||||||
|
|
||||||
def isadmin(self, cldbid):
|
def isadmin(self, cldbid):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue