From 583eb04b541175035d6d452ca626a96ebf2b7437 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 26 Jun 2020 08:37:26 +0200 Subject: Upgrade to angular 10 --- client/src/app/shared/shared-main/video/video.service.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'client/src/app/shared/shared-main/video') diff --git a/client/src/app/shared/shared-main/video/video.service.ts b/client/src/app/shared/shared-main/video/video.service.ts index ee3549695..edaefa9f2 100644 --- a/client/src/app/shared/shared-main/video/video.service.ts +++ b/client/src/app/shared/shared-main/video/video.service.ts @@ -1,4 +1,3 @@ -import { FfprobeData } from 'fluent-ffmpeg' import { Observable } from 'rxjs' import { catchError, map, switchMap } from 'rxjs/operators' import { HttpClient, HttpParams, HttpRequest } from '@angular/common/http' @@ -19,7 +18,8 @@ import { VideoFilter, VideoPrivacy, VideoSortField, - VideoUpdate + VideoUpdate, + VideoFileMetadata } from '@shared/models' import { environment } from '../../../../environments/environment' import { Account, AccountService } from '../account' @@ -275,7 +275,7 @@ export class VideoService implements VideosProvider { getVideoFileMetadata (metadataUrl: string) { return this.authHttp - .get(metadataUrl) + .get(metadataUrl) .pipe( catchError(err => this.restExtractor.handleError(err)) ) -- cgit v1.2.3