Skip validation for orion scraper!

This commit is contained in:
Cooper 2024-08-01 02:46:11 +00:00
parent 412b42585f
commit d261a3baab
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
import { alphaScraper, deltaScraper } from '@/providers/embeds/nsbx';
import { warezcdnembedMp4Scraper } from '@/providers/embeds/warezcdn/mp4';
import { astraScraper, novaScraper } from '@/providers/embeds/whvx';
import { astraScraper, novaScraper, orionScraper } from '@/providers/embeds/whvx';
import { Stream } from '@/providers/streams';
import { IndividualEmbedRunnerOptions } from '@/runners/individualRunner';
import { ProviderRunnerOptions } from '@/runners/runner';
@ -11,6 +11,7 @@ const SKIP_VALIDATION_CHECK_IDS = [
alphaScraper.id,
novaScraper.id,
astraScraper.id,
orionScraper.id,
];
export function isValidStream(stream: Stream | undefined): boolean {