Set message expiration time to 15 seconds
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Bea 2022-11-21 19:11:18 +01:00
parent 531ff66bae
commit 0bcb5d58f4
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ public class Configuration
private final static String expiryTimestampFormat = "yy/MM/dd HH:mm:ss";
// note: discord sets interactions' expiry time to 15 minutes by default, so we can't go higher than that.
private final static long expiryTimeSeconds = 5L;
private final static long expiryTimeSeconds = 15L;
// used to count eg. uptime
private static LocalDateTime startupTime;