remove vulnerable chatter system, increase redis expiry, persistant redis storage

This commit is contained in:
2025-06-01 13:56:55 +02:00
parent 2adad83cca
commit 37a38eb9e0
4 changed files with 8 additions and 9 deletions

View File

@@ -2,7 +2,7 @@ import { redis } from "bun";
import { chatterApi } from ".";
import { HelixUser } from "@twurple/api"
const EXPIRETIME = 60 * 15 // 15 minutes
const EXPIRETIME = 60 * 30 // 30 minutes
export class User {
public username: string | undefined;