From bb4c570cdc866b8dd50a0582d013e7879c8e919a Mon Sep 17 00:00:00 2001 From: CMK Date: Tue, 14 Jun 2022 11:09:57 +0800 Subject: [PATCH] fix: use wrong mention types issue. resolve #452 --- Mastodon/Service/APIService/APIService+Notification.swift | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Mastodon/Service/APIService/APIService+Notification.swift b/Mastodon/Service/APIService/APIService+Notification.swift index 921f75d01..88c69847b 100644 --- a/Mastodon/Service/APIService/APIService+Notification.swift +++ b/Mastodon/Service/APIService/APIService+Notification.swift @@ -37,11 +37,8 @@ extension APIService { ] case .mentions: return [ - .follow, - .followRequest, - .reblog, - .favourite, - .poll + .mention, + .status, ] } }(),