feat: Add change lookahead to plugin
All checks were successful
Build Docker / Build Image (push) Successful in 46s

This commit is contained in:
2025-01-28 13:20:44 +11:00
parent d39f433738
commit f7968fc218
2 changed files with 49 additions and 5 deletions

View File

@@ -690,11 +690,7 @@ def sendBatch(account, batch):
"params": [batch]
}).json()
if response['error'] is not None:
return {
"error": {
"message": response['error']['message']
}
}
return response
if 'result' not in response:
return {
"error": {