Fix video error handling
This commit is contained in:
parent
f108600464
commit
22e05d15db
2 changed files with 3 additions and 3 deletions
|
@ -23,7 +23,7 @@ export class CustomPageService {
|
|||
return of({ content: '' })
|
||||
}
|
||||
|
||||
this.restExtractor.handleError(err)
|
||||
return this.restExtractor.handleError(err)
|
||||
})
|
||||
)
|
||||
}
|
||||
|
|
|
@ -395,7 +395,7 @@ export class VideoService {
|
|||
return of([])
|
||||
}
|
||||
|
||||
this.restExtractor.handleError(err)
|
||||
return this.restExtractor.handleError(err)
|
||||
})
|
||||
)
|
||||
}
|
||||
|
@ -411,7 +411,7 @@ export class VideoService {
|
|||
return of(undefined)
|
||||
}
|
||||
|
||||
this.restExtractor.handleError(err)
|
||||
return this.restExtractor.handleError(err)
|
||||
})
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue