aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-main/video/video-import.service.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-09-16 10:33:26 +0200
committerChocobozzz <me@florianbigard.com>2022-09-16 10:33:55 +0200
commit3afe0ec3b32d2bd9183541ecbf40278710f8707d (patch)
treeb2abcc754dfa9a3b22d8a56c89902da801265b86 /client/src/app/shared/shared-main/video/video-import.service.ts
parent56162c6a06732b6beb2021d0d95450363e21cadf (diff)
downloadPeerTube-3afe0ec3b32d2bd9183541ecbf40278710f8707d.tar.gz
PeerTube-3afe0ec3b32d2bd9183541ecbf40278710f8707d.tar.zst
PeerTube-3afe0ec3b32d2bd9183541ecbf40278710f8707d.zip
Fix broken dates with localized pages
Diffstat (limited to 'client/src/app/shared/shared-main/video/video-import.service.ts')
-rw-r--r--client/src/app/shared/shared-main/video/video-import.service.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/client/src/app/shared/shared-main/video/video-import.service.ts b/client/src/app/shared/shared-main/video/video-import.service.ts
index f9720033a..607c08d71 100644
--- a/client/src/app/shared/shared-main/video/video-import.service.ts
+++ b/client/src/app/shared/shared-main/video/video-import.service.ts
@@ -64,7 +64,6 @@ export class VideoImportService {
64 .get<ResultList<VideoImport>>(UserService.BASE_USERS_URL + '/me/videos/imports', { params }) 64 .get<ResultList<VideoImport>>(UserService.BASE_USERS_URL + '/me/videos/imports', { params })
65 .pipe( 65 .pipe(
66 switchMap(res => this.extractVideoImports(res)), 66 switchMap(res => this.extractVideoImports(res)),
67 map(res => this.restExtractor.convertResultListDateToHuman(res)),
68 catchError(err => this.restExtractor.handleError(err)) 67 catchError(err => this.restExtractor.handleError(err))
69 ) 68 )
70 } 69 }