We don't need to load complete description anymore

It's already included in classic payload
pull/6562/head
Chocobozzz 2024-08-12 17:03:47 +02:00
parent 8e0144a089
commit 6ff42dff2a
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 1 additions and 14 deletions

View File

@ -37,9 +37,7 @@ export class VideoUpdateResolver {
private buildVideoObservables (video: VideoDetails) {
return [
this.videoService
.loadCompleteDescription(video.descriptionPath)
.pipe(map(description => Object.assign(video, { description }))),
of(video),
this.videoService.getSource(video.id),

View File

@ -379,17 +379,6 @@ export class VideoService {
// ---------------------------------------------------------------------------
loadCompleteDescription (descriptionPath: string) {
return this.authHttp
.get<{ description: string }>(environment.apiUrl + descriptionPath)
.pipe(
map(res => res.description),
catchError(err => this.restExtractor.handleError(err))
)
}
// ---------------------------------------------------------------------------
generateDownloadUrl (options: {
video: Video
files: VideoFile[]