diff options
author | dolfies <jeyalfie47@gmail.com> | 2023-07-07 20:37:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-08 02:37:32 +0200 |
commit | 2db0e71e5bdc10f0654f3a4874d7f65717a92e71 (patch) | |
tree | 023b2d0c961c40ba1ae4cc677adc28cc9e915e49 /src/plugins/relationshipNotifier/functions.ts | |
parent | cde8074f4417de18979dd8ba793214b5b6ada715 (diff) | |
download | Vencord-2db0e71e5bdc10f0654f3a4874d7f65717a92e71.tar.gz Vencord-2db0e71e5bdc10f0654f3a4874d7f65717a92e71.tar.bz2 Vencord-2db0e71e5bdc10f0654f3a4874d7f65717a92e71.zip |
fix(RelationshipNotifier): Ignore user-actioned friend requests (#1390)
Diffstat (limited to 'src/plugins/relationshipNotifier/functions.ts')
-rw-r--r-- | src/plugins/relationshipNotifier/functions.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/relationshipNotifier/functions.ts b/src/plugins/relationshipNotifier/functions.ts index 104436a..e712382 100644 --- a/src/plugins/relationshipNotifier/functions.ts +++ b/src/plugins/relationshipNotifier/functions.ts @@ -50,7 +50,7 @@ export async function onRelationshipRemove({ relationship: { type, id } }: Relat () => openUserProfile(user.id) ); break; - case RelationshipType.FRIEND_REQUEST: + case RelationshipType.INCOMING_REQUEST: if (settings.store.friendRequestCancels) notify( `A friend request from ${getUniqueUsername(user)} has been removed.`, |