fix(presets/usenet-streamer): add elf emoji to nzb status regex (#504)

This commit is contained in:
David Young
2025-11-23 03:41:42 +13:00
committed by GitHub
parent 78eb16c50e
commit dbe86edc92
+1 -1
View File
@@ -39,7 +39,7 @@ export class UsenetStreamerParser extends StreamParser {
stream: Stream,
currentParsedStream: ParsedStream
): string | undefined {
const status = stream.description?.match(/(✅|⚠️|🚫)/g)?.[0];
const status = stream.description?.match(/(🧝|✅|⚠️|🚫)/g)?.[0];
if (status) return `NZB Health: ${status}`;
}