Fixed RSS schedule timer

This commit is contained in:
Ghoti 2025-08-20 23:12:04 -05:00
parent 8d2648a895
commit 52aad0a7a1
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ public class BiscuitGuild {
}
};
ScheduledExecutorService scheduler = Executors.newScheduledThreadPool(1);
scheduler.scheduleAtFixedRate(post, 0, 1, TimeUnit.MINUTES);
scheduler.scheduleAtFixedRate(post, 0, 10, TimeUnit.MINUTES);
}
}