Skip to content
Snippets Groups Projects
Commit 1b65c06d authored by Marie's avatar Marie
Browse files

merge: fix: delete old follow request (if exists) before creating new (!440)

View MR for information: TransFem-org/Sharkey!440



Approved-by: default avatardakkar <dakkar@thenautilus.net>
Approved-by: default avatarMarie <marie@kaifa.ch>
parents d539dec8 def2e8df
No related branches found
No related tags found
3 merge requests!449release 2024.3.1,!448Release 2023.3.1 - Codename #NotDeadYet,!440fix: delete old follow request (if exists) before creating new
Pipeline #269 canceled with stages
......@@ -520,6 +520,12 @@ export class UserFollowingService implements OnModuleInit {
if (blocking) throw new Error('blocking');
if (blocked) throw new Error('blocked');
// Remove old follow requests before creating a new one.
await this.followRequestsRepository.delete({
followeeId: followee.id,
followerId: follower.id,
});
const followRequest = await this.followRequestsRepository.insert({
id: this.idService.gen(),
followerId: follower.id,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment