File tree 1 file changed +2
-2
lines changed
libs/scraper/eztv-provider/src
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export class EztvProviderService extends BaseProvider {
31
31
protected async scrapeConfig ( config : ScraperProviderConfig ) : Promise < void > {
32
32
this . setConfig ( config )
33
33
34
- const contents : ScrapedItem [ ] = await this . api . getAll ( )
34
+ const contents : ScrapedItem [ ] = await this . api . getAllShows ( )
35
35
36
36
this . logger . log ( `${ this . name } : Found ${ contents . length } ${ this . contentType } s.` )
37
37
@@ -44,7 +44,7 @@ export class EztvProviderService extends BaseProvider {
44
44
if ( ! isInBlacklist ) {
45
45
try {
46
46
// Get full show data
47
- const show : ScrapedItem = this . api . getShowData ( content )
47
+ const show : ScrapedItem = await this . api . getShowData ( content )
48
48
49
49
// Enhance and import the show
50
50
await this . enhanceAndImport ( show )
You can’t perform that action at this time.
0 commit comments