diff --git a/Tusker/Views/Poll/StatusPollView.swift b/Tusker/Views/Poll/StatusPollView.swift index e70ccecc95..d24d216cd8 100644 --- a/Tusker/Views/Poll/StatusPollView.swift +++ b/Tusker/Views/Poll/StatusPollView.swift @@ -114,7 +114,11 @@ class StatusPollView: UIView { if expired { voteButton.setTitle("Expired", for: .disabled) } else if poll.voted ?? false { - voteButton.setTitle("Voted", for: .disabled) + if status.account.id == mastodonController.account.id { + voteButton.setTitle("", for: .disabled) + } else { + voteButton.setTitle("Voted", for: .disabled) + } } else if poll.multiple { voteButton.setTitle("Select multiple", for: .disabled) } else {