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

Fix build (IOS-157)

This commit is contained in:
Nathan Mattes 2023-05-23 12:45:13 +02:00
parent ce897a0e05
commit 9c19bf2985

View File

@ -380,7 +380,7 @@ extension ProfileViewController {
profileHeaderViewController.profileHeaderView.viewModel.$name
.receive(on: DispatchQueue.main)
.sink { [weak self] name in
guard let self = self, isModal == false else { return }
guard let self = self, self.isModal == false else { return }
self.navigationItem.title = name
}
.store(in: &disposeBag)