diff options
Diffstat (limited to 'client/src/app/shared/shared-video-live')
-rw-r--r-- | client/src/app/shared/shared-video-live/live-stream-information.component.ts | 4 | ||||
-rw-r--r-- | client/src/app/shared/shared-video-live/live-video.service.ts | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/shared/shared-video-live/live-stream-information.component.ts b/client/src/app/shared/shared-video-live/live-stream-information.component.ts index 400a6fa01..4089c88fb 100644 --- a/client/src/app/shared/shared-video-live/live-stream-information.component.ts +++ b/client/src/app/shared/shared-video-live/live-stream-information.component.ts | |||
@@ -1,7 +1,7 @@ | |||
1 | import { Component, ElementRef, ViewChild } from '@angular/core' | 1 | import { Component, ElementRef, ViewChild } from '@angular/core' |
2 | import { Video } from '@app/shared/shared-main' | 2 | import { Video } from '@app/shared/shared-main' |
3 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' | 3 | import { NgbModal } from '@ng-bootstrap/ng-bootstrap' |
4 | import { LiveVideo, LiveVideoError, LiveVideoSession } from '@shared/models' | 4 | import { LiveVideo, LiveVideoError, LiveVideoErrorType, LiveVideoSession } from '@peertube/peertube-models' |
5 | import { LiveVideoService } from './live-video.service' | 5 | import { LiveVideoService } from './live-video.service' |
6 | 6 | ||
7 | @Component({ | 7 | @Component({ |
@@ -38,7 +38,7 @@ export class LiveStreamInformationComponent { | |||
38 | getErrorLabel (session: LiveVideoSession) { | 38 | getErrorLabel (session: LiveVideoSession) { |
39 | if (!session.error) return undefined | 39 | if (!session.error) return undefined |
40 | 40 | ||
41 | const errors: { [ id in LiveVideoError ]: string } = { | 41 | const errors: { [ id in LiveVideoErrorType ]: string } = { |
42 | [LiveVideoError.BAD_SOCKET_HEALTH]: $localize`Server too slow`, | 42 | [LiveVideoError.BAD_SOCKET_HEALTH]: $localize`Server too slow`, |
43 | [LiveVideoError.BLACKLISTED]: $localize`Live blacklisted`, | 43 | [LiveVideoError.BLACKLISTED]: $localize`Live blacklisted`, |
44 | [LiveVideoError.DURATION_EXCEEDED]: $localize`Max duration exceeded`, | 44 | [LiveVideoError.DURATION_EXCEEDED]: $localize`Max duration exceeded`, |
diff --git a/client/src/app/shared/shared-video-live/live-video.service.ts b/client/src/app/shared/shared-video-live/live-video.service.ts index 89bfd84a0..8ac0eb924 100644 --- a/client/src/app/shared/shared-video-live/live-video.service.ts +++ b/client/src/app/shared/shared-video-live/live-video.service.ts | |||
@@ -2,7 +2,7 @@ import { catchError } from 'rxjs/operators' | |||
2 | import { HttpClient } from '@angular/common/http' | 2 | import { HttpClient } from '@angular/common/http' |
3 | import { Injectable } from '@angular/core' | 3 | import { Injectable } from '@angular/core' |
4 | import { RestExtractor } from '@app/core' | 4 | import { RestExtractor } from '@app/core' |
5 | import { LiveVideo, LiveVideoCreate, LiveVideoSession, LiveVideoUpdate, ResultList, VideoCreateResult } from '@shared/models' | 5 | import { LiveVideo, LiveVideoCreate, LiveVideoSession, LiveVideoUpdate, ResultList, VideoCreateResult } from '@peertube/peertube-models' |
6 | import { environment } from '../../../environments/environment' | 6 | import { environment } from '../../../environments/environment' |
7 | import { VideoService } from '../shared-main' | 7 | import { VideoService } from '../shared-main' |
8 | 8 | ||