Skip to content

Commit

Permalink
Fix vote count display in incrementVote.js
Browse files Browse the repository at this point in the history
  • Loading branch information
chimpdev committed Mar 28, 2024
1 parent 7eb9c07 commit 0150f80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/utils/servers/incrementVote.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ async function incrementVote(guildId, userId) {
},
{
name: 'Total votes',
value: server.votes + incrementCount
value: (server.votes + incrementCount).toString()
}
])
.setFooter({ text: `Voted at ${new Date().toLocaleString()}` });
Expand Down

0 comments on commit 0150f80

Please sign in to comment.