Bugfix template
This commit is contained in:
parent
d376e53d2f
commit
9332b348eb
2 changed files with 13 additions and 2 deletions
5
app.py
5
app.py
|
@ -994,6 +994,10 @@ def notifications():
|
|||
"activity.object": {"$regex": f"^{BASE_URL}"},
|
||||
}
|
||||
new_followers_query = {"type": ActivityType.FOLLOW.value}
|
||||
unfollow_query = {
|
||||
"type": ActivityType.UNDO.value,
|
||||
"activity.object.type": ActivityType.FOLLOW.value,
|
||||
}
|
||||
followed_query = {"type": ActivityType.ACCEPT.value}
|
||||
q = {
|
||||
"box": Box.INBOX.value,
|
||||
|
@ -1003,6 +1007,7 @@ def notifications():
|
|||
replies_query,
|
||||
new_followers_query,
|
||||
followed_query,
|
||||
unfollow_query,
|
||||
],
|
||||
}
|
||||
c = request.args.get("cursor")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue