Fix video error handling

pull/6026/head
Chocobozzz 2023-10-30 09:55:06 +01:00
parent f108600464
commit 22e05d15db
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ export class CustomPageService {
return of({ content: '' })
}
this.restExtractor.handleError(err)
return this.restExtractor.handleError(err)
})
)
}

View File

@ -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)
})
)
}