1
0
Fork 0

Compare commits

..

No commits in common. "16aeab15cf6d96af809087c3b2f35888ba442597" and "b48acdc688853db9a07f3944c3b2e398c8e58a2f" have entirely different histories.

1 changed files with 0 additions and 2 deletions

View File

@ -140,7 +140,6 @@ class Appservice:
"PUT",
"/presence/" + user_id + "/status",
content={"presence":"online"},
query_params={"user_id": user_id},
headers={"Content-Type": "application/json"},
)
elif msg["action"] == "left":
@ -149,7 +148,6 @@ class Appservice:
"PUT",
"/presence/" + user_id + "/status",
content={"presence":"offline"},
query_params={"user_id": user_id},
headers={"Content-Type": "application/json"},
)
if "msg" in msg: