diff --git a/server/api/api/v1/accounts/[id]/unfollow.ts b/server/api/api/v1/accounts/[id]/unfollow.ts index 6ec53ca3..db3b89d6 100644 --- a/server/api/api/v1/accounts/[id]/unfollow.ts +++ b/server/api/api/v1/accounts/[id]/unfollow.ts @@ -74,6 +74,7 @@ export default apiRoute(async (req, matchedRoute, extraData) => { where: { id: relationship.id }, data: { following: false, + requested: false, }, });