Skip to content

Commit

Permalink
Fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
gnh1201 committed Oct 25, 2024
1 parent 965423a commit 3af8879
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion base.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def jsonrpc2_create_id(data):
def jsonrpc2_encode(method, params=None):
data = {"jsonrpc": "2.0", "method": method, "params": params}
id = jsonrpc2_create_id(data)
id = data.get("id")
data["id"] = id
return (id, json.dumps(data))


Expand Down
2 changes: 1 addition & 1 deletion plugins
Submodule plugins updated 1 files
+17 −1 alwaysonline.py

0 comments on commit 3af8879

Please sign in to comment.