Skip to content

Commit 2771d2c

Browse files
committed
Fix QOTW being sent on sunday
1 parent a0b8391 commit 2771d2c

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/net/javadiscord/javabot/systems/qotw

1 file changed

+1
-1
lines changed

src/main/java/net/javadiscord/javabot/systems/qotw/QOTWJob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public class QOTWJob {
4747
* Posts a new question to the QOTW channel.
4848
* @throws SQLException if an SQL error occurs
4949
*/
50-
@Scheduled(cron = "0 0 9 * * 0")//MONDAY, 09:00
50+
@Scheduled(cron = "0 0 9 * * 1")//MONDAY, 09:00
5151
public void execute() throws SQLException {
5252
for (Guild guild : jda.getGuilds()) {
5353
if (guild.getBoostTier() == Guild.BoostTier.TIER_1) {

0 commit comments

Comments
 (0)