Raise interaction expiration time to 30s

This commit is contained in:
bea
2022-12-28 05:41:23 +01:00
parent 78f62b5f8d
commit c1059bb937
@@ -46,7 +46,7 @@ public class Cache
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 = 15L;
private final static long expiryTimeSeconds = 30L;
// used to count e.g. uptime
private static LocalDateTime startupTime = null;