We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49a8ebc commit 0489a30Copy full SHA for 0489a30
src/mediasources.ts
@@ -354,12 +354,10 @@ function MediaSources() {
354
}
355
356
function availableAudioDescribedCdns(): string[] {
357
- console.log("AD: ")
358
- console.table(audioDescribedSources)
359
- console.log("Failover: ")
360
- console.table(failedOverSources)
361
const adCdns = audioDescribedSources.map((adSource) => adSource.cdn)
362
- return adCdns.filter((adCdn) => failedOverSources.map((failedOverSources) => failedOverSources.cdn).includes(adCdn))
+ return adCdns.filter(
+ (adCdn) => !failedOverSources.map((failedOverSources) => failedOverSources.cdn).includes(adCdn)
+ )
363
364
365
function updateDebugOutput() {
0 commit comments