Show correct account for "quoted" posts in notifications (IOS-192)

This commit is contained in:
Nathan Mattes 2023-12-26 16:27:04 +01:00
parent 76304e59e5
commit 1b1274c2f7
1 changed files with 3 additions and 1 deletions

View File

@ -305,9 +305,11 @@ extension NotificationTableViewCellDelegate where Self: DataSourceProvider & Aut
return
}
guard let account = notification.status?.entity.account else { return }
await DataSourceFacade.coordinateToProfileScene(
provider: self,
account: notification.entity.account
account: account
)
} // end Task
}