feat(providers): Fix typos

This commit is contained in:
Isra 2023-09-11 22:49:25 -05:00
parent 6fc1a74729
commit e28d3fae92
2 changed files with 3 additions and 3 deletions

View File

@ -1,11 +1,11 @@
import { Embed, Sourcerer } from '@/providers/base';
import { upcloudScraper } from '@/providers/embeds/upcloud';
import { flixhqScraper } from '@/providers/sources/flixhq/index';
import { remotreamScraper } from '@/providers/sources/remotestream/index';
import { remotestreamScraper } from '@/providers/sources/remotestream/index';
export function gatherAllSources(): Array<Sourcerer> {
// all sources are gathered here
return [flixhqScraper, remotreamScraper];
return [flixhqScraper, remotestreamScraper];
}
export function gatherAllEmbeds(): Array<Embed> {

View File

@ -5,7 +5,7 @@ import { NotFoundError } from '@/utils/errors';
import { remotestreamBase } from './common';
// TODO tv shows are available in flixHQ, just no scraper yet
export const remotreamScraper = makeSourcerer({
export const remotestreamScraper = makeSourcerer({
id: 'remotestream',
name: 'Remote Stream',
rank: 55,