Skip to content

Commit

Permalink
Fix content description for upvotes (#1516)
Browse files Browse the repository at this point in the history
  • Loading branch information
MV-GH authored May 21, 2024
1 parent 8626315 commit 63e96b3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ fun VoteGeneric(
if (myVote == 1) {
stringResource(R.string.upvoted)
} else {
stringResource(R.string.downvoted)
stringResource(R.string.upvote)
}
} else {
if (myVote == 1) {
if (myVote == -1) {
stringResource(R.string.downvoted)
} else {
stringResource(R.string.downvote)
Expand Down

0 comments on commit 63e96b3

Please sign in to comment.