Enhance: Twitch multi-streamer support and fix timer listall
All checks were successful
Auto Build and Push Docker Image / build (push) Successful in 7s

- Twitch add: multiple streamers via comma separation
- Twitch add: optional discord channel (defaults to current)
- Twitch remove: multiple streamers via comma separation
- Twitch listall: new command showing all server streamers (admin)
- Timer listall: fix SQL error by removing invalid JOIN

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-23 09:45:28 +01:00
parent 5c6188ea13
commit 1dcd1cad98
2 changed files with 144 additions and 24 deletions

View File

@@ -293,7 +293,7 @@ const command: Command = {
}
const reminders: any[] = DB.all(
'SELECT r.*, c.name as channel_name FROM reminders r LEFT JOIN channels c ON r.channel_id = c.id WHERE r.guild_id = ? ORDER BY r.target_time ASC',
'SELECT * FROM reminders WHERE guild_id = ? ORDER BY target_time ASC',
guildId
);