Fix very strange error: get mentions includes other types

This commit is contained in:
localhost_frssoft 2022-09-05 01:19:46 +03:00
parent b5f2caf749
commit 2b91d414ca
2 changed files with 4 additions and 2 deletions

View File

@ -17,9 +17,9 @@ headers= {
def get_notifications():
params = {
"limit": 15,
"type": "mention"
"types": ["mention"]
}
r = requests.get(instance_point + "/notifications", params, headers=headers)
r = requests.get(instance_point + "/notifications", json=params, headers=headers)
return r.json()

View File

@ -20,6 +20,8 @@ def get_control_mention():
notif = get_notifications()
for i in notif:
if i['type'] != "mention":
continue
seen = i['pleroma']['is_seen']
acct_mention = i['account']['acct']
reply_to_id = i['status']['in_reply_to_id']