From d0e52c2e17b0485ffc70b7cdc2dbc0a5bf019e34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gyuhwan=20Park=E2=98=85?= Date: Sat, 30 Nov 2024 16:49:45 +0900 Subject: [PATCH] =?UTF-8?q?ui/timeline:=20=EC=95=8C=EB=A6=BC=20=ED=83=AD?= =?UTF-8?q?=EC=97=90=EC=84=9C=20=EB=A9=98=EC=85=98=20=EC=8B=9C=EC=97=90?= =?UTF-8?q?=EB=8F=84=20relatedAccount=EA=B0=80=20=EC=84=A4=EC=A0=95?= =?UTF-8?q?=EB=90=98=EB=8D=98=20=EB=AC=B8=EC=A0=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- reazure/views/timeline/PostGroup.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/reazure/views/timeline/PostGroup.swift b/reazure/views/timeline/PostGroup.swift index 2d6fff6..cf5b397 100644 --- a/reazure/views/timeline/PostGroup.swift +++ b/reazure/views/timeline/PostGroup.swift @@ -130,7 +130,9 @@ fileprivate extension StatusModel { var rootRelatedAccount: AccountAdaptor? { // check (self instanceof NotificationModel) if let _self = self as? NotificationModel { - return _self.notification.account + if _self.notification.type != .mention { + return _self.notification.account + } } return nil