improved safety, minor docker compose changes, cheer parsing bugfixes

This commit is contained in:
2025-09-18 15:53:36 +02:00
parent a06b0a1e03
commit 1d9b810229
16 changed files with 36 additions and 31 deletions

View File

@@ -15,7 +15,7 @@ export default new Command({
const userKDs: KD[] = [];
await Promise.all(users.map(async userRecord => {
const user = await User.initUserId(userRecord.id);
const user = await User.initUserId(userRecord.id.toString());
if (!user) return;
const data = await getTimeoutStats(user, true);
if (!data) return;