he4rt/he4rt-bot-next

Correção: Ajuste na string de hora do nome do canal pomodoro

ronei-kunkel opened this issue · 0 comments

return `${date.getHours()}:${date.getMinutes()}`

return `${(date.getHours() < 10 ? '0' : '') + date.getHours()}:${(date.getMinutes() < 10 ? '0' : '') + date.getMinutes()}`