diff --git a/View Controllers/ProfileViewController.swift b/View Controllers/ProfileViewController.swift index 53e8178..3a8739e 100644 --- a/View Controllers/ProfileViewController.swift +++ b/View Controllers/ProfileViewController.swift @@ -74,17 +74,18 @@ private extension ProfileViewController { // swiftlint:disable:next function_body_length func menu(accountViewModel: AccountViewModel, relationship: Relationship) -> UIMenu { var actions = [UIAction( - title: NSLocalizedString("account.add-remove-lists", comment: ""), - image: UIImage(systemName: "scroll")) { [weak self] _ in - self?.addRemoveFromLists(accountViewModel: accountViewModel) - }, - UIAction( title: NSLocalizedString("share", comment: ""), image: UIImage(systemName: "square.and.arrow.up")) { _ in accountViewModel.share() }] if relationship.following { + actions.append(UIAction( + title: NSLocalizedString("account.add-remove-lists", comment: ""), + image: UIImage(systemName: "scroll")) { [weak self] _ in + self?.addRemoveFromLists(accountViewModel: accountViewModel) + }) + if relationship.showingReblogs { actions.append(UIAction( title: NSLocalizedString("account.hide-reblogs", comment: ""),