🐛 (api.py): Fix to work has expected

This commit is contained in:
Raphaël "Zerka" H 2023-08-31 12:14:41 +02:00 committed by GitHub
parent 91ad893223
commit d56ffcc774
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -502,12 +502,12 @@ class UptimeKumaApi(object):
def _call(self, event, data=None) -> Any:
try:
r = self.sio.call(event, data, timeout=self.timeout)
r.pop("ok")
except socketio.exceptions.TimeoutError:
raise Timeout(f"Timed out while waiting for event {event}")
except Exception as e:
if isinstance(r, dict) and "ok" in r:
if not r["ok"]:
raise UptimeKumaException(r.get("msg"))
r.pop("ok")
return r
# event handlers