Fix localization bug with polls

This commit is contained in:
dangered wolf 2024-05-20 23:59:04 -04:00
parent e3970bc8be
commit 9a9ca5381e
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -391,8 +391,7 @@ export const handleStatus = async (
/* Finally, add the footer of the poll with # of votes and time left */
str += '\n'; /* TODO: Localize time left */
str += i18next
.t('pollVotes')
.format({ voteCount: formatNumber(poll.total_votes), timeLeft: poll.time_left_en });
.t('pollVotes', { voteCount: formatNumber(poll.total_votes), timeLeft: poll.time_left_en })
/* Check if the poll is ongoing and apply low TTL cache control.
Yes, checking if this is a string is a hacky way to do this, but