mirror of
https://github.com/RoboSats/robosats.git
synced 2025-07-19 09:13:28 +00:00
Merge branch 'main' into fix-typo-tests
This commit is contained in:
@ -39,7 +39,7 @@ class Command(BaseCommand):
|
|||||||
f.write(f"Error getting updates: {e}\n{traceback.format_exc()}\n")
|
f.write(f"Error getting updates: {e}\n{traceback.format_exc()}\n")
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if not "result" in response or not response["result"]:
|
if "result" not in response or not response["result"]:
|
||||||
continue
|
continue
|
||||||
for result in response["result"]:
|
for result in response["result"]:
|
||||||
if not result.get("message") or not result.get("message").get("text"):
|
if not result.get("message") or not result.get("message").get("text"):
|
||||||
|
Reference in New Issue
Block a user