api/match-action: add missing twitch case to redirect group

closes #741
This commit is contained in:
wukko 2024-09-12 14:30:21 +06:00
parent 64173f7a03
commit 80a01494c7
No known key found for this signature in database
GPG key ID: 3E30B3F26C7B4AA2

View file

@ -148,6 +148,7 @@ export default function({ r, host, audioFormat, isAudioOnly, isAudioMuted, disab
case "streamable": case "streamable":
case "snapchat": case "snapchat":
case "loom": case "loom":
case "twitch":
responseType = "redirect"; responseType = "redirect";
break; break;
} }