Skip to content

Commit

Permalink
Merge pull request #12288 from nextcloud/fix/loby-timer-part-3
Browse files Browse the repository at this point in the history
fix(LobbySettings): convert to string before passing it to translation
  • Loading branch information
nickvergessen authored May 7, 2024
2 parents 824098e + c59a668 commit e1624df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ConversationSettings/LobbySettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export default {
return ''
}
const date = new Date(this.lobbyTimer)
return t('spreed', 'Start time: {date}', { date })
return t('spreed', 'Start time: {date}', { date: date.toString() })
},

getRelativeTime() {
Expand Down

0 comments on commit e1624df

Please sign in to comment.