Compare commits

..

No commits in common. "3b813a63dabe5b8941adb963327406008472dbe9" and "6d6f9d25f90f8b373c813c209930ffe8a48b5949" have entirely different histories.

View file

@ -308,7 +308,7 @@ class ScheduleButton(discord.ui.Button):
if tasks: if tasks:
for (day, hour, min, cadence, cadence_start) in tasks: for (day, hour, min, cadence, cadence_start) in tasks:
next_run = util.get_next_datetime_with_cadence(day, hour, datetime.now(), cadence, cadence_start) next_run = util.get_next_datetime(day, hour, datetime.now(), cadence, cadence_start)
msg += strings.scheduled(next_run, min) msg += strings.scheduled(next_run, min)
await interaction.channel.send(msg) await interaction.channel.send(msg)