diff --git a/files/routes/settings.py b/files/routes/settings.py index 4f7c22c86..dca2486c4 100644 --- a/files/routes/settings.py +++ b/files/routes/settings.py @@ -653,7 +653,7 @@ def settings_block_user(v): if not user: return {"error": "That user doesn't exist."}, 404 if user.unblockable: - send_repeatable_notification(user.id, f"@{v.username} has tried to block you and failed because of your unblockable status!") + send_notification(user.id, f"@{v.username} has tried to block you and failed because of your unblockable status!") g.db.commit() return {"error": "This user is unblockable."}, 403 diff --git a/files/routes/users.py b/files/routes/users.py index 570fddda1..7c81c3737 100644 --- a/files/routes/users.py +++ b/files/routes/users.py @@ -1059,7 +1059,7 @@ def unfollow_user(username, v): target = get_user(username) if target.fish: - send_repeatable_notification(target.id, f"@{v.username} has tried to unfollow you and failed because of your fish award!") + send_notification(target.id, f"@{v.username} has tried to unfollow you and failed because of your fish award!") g.db.commit() return {"error": "You can't unfollow this user!"}