2
2
mirror of https://github.com/mastodon/mastodon-ios synced 2025-04-11 22:58:02 +02:00

Fix typo causing boosts to show up as mentions in notifications

Contributes to #399 [BUG] Multiple interactions do not collapse into a single notification
This commit is contained in:
shannon 2025-02-18 15:08:35 -05:00
parent c85bbad148
commit 523ff0a78e

View File

@ -673,7 +673,7 @@ extension GroupedNotificationType {
case .mention:
self = .mention(notification.status)
case .reblog:
self = .mention(notification.status)
self = .reblog(notification.status)
case .favourite:
self = .favourite(notification.status)
case .poll:
@ -713,7 +713,7 @@ extension GroupedNotificationType {
case .mention:
self = .mention(status)
case .reblog:
self = .mention(status)
self = .reblog(status)
case .favourite:
self = .favourite(status)
case .poll: