diff options
Diffstat (limited to 'client/src/app')
-rw-r--r-- | client/src/app/videos/+video-edit/shared/video-edit.component.ts | 1 | ||||
-rw-r--r-- | client/src/app/videos/+video-watch/video-watch.component.ts | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/client/src/app/videos/+video-edit/shared/video-edit.component.ts b/client/src/app/videos/+video-edit/shared/video-edit.component.ts index 24418fc4f..66eb6611a 100644 --- a/client/src/app/videos/+video-edit/shared/video-edit.component.ts +++ b/client/src/app/videos/+video-edit/shared/video-edit.component.ts | |||
@@ -35,7 +35,6 @@ export class VideoEditComponent implements OnInit { | |||
35 | 35 | ||
36 | schedulePublicationEnabled = false | 36 | schedulePublicationEnabled = false |
37 | 37 | ||
38 | error: string = null | ||
39 | calendarLocale: any = {} | 38 | calendarLocale: any = {} |
40 | minScheduledDate = new Date() | 39 | minScheduledDate = new Date() |
41 | 40 | ||
diff --git a/client/src/app/videos/+video-watch/video-watch.component.ts b/client/src/app/videos/+video-watch/video-watch.component.ts index 72e96ca93..6f6bd4e5d 100644 --- a/client/src/app/videos/+video-watch/video-watch.component.ts +++ b/client/src/app/videos/+video-watch/video-watch.component.ts | |||
@@ -10,7 +10,7 @@ import { Subscription } from 'rxjs' | |||
10 | import * as videojs from 'video.js' | 10 | import * as videojs from 'video.js' |
11 | import 'videojs-hotkeys' | 11 | import 'videojs-hotkeys' |
12 | import * as WebTorrent from 'webtorrent' | 12 | import * as WebTorrent from 'webtorrent' |
13 | import { UserVideoRateType, VideoRateType, VideoState } from '../../../../../shared' | 13 | import { UserVideoRateType, VideoPrivacy, VideoRateType, VideoState } from '../../../../../shared' |
14 | import '../../../assets/player/peertube-videojs-plugin' | 14 | import '../../../assets/player/peertube-videojs-plugin' |
15 | import { AuthService, ConfirmService } from '../../core' | 15 | import { AuthService, ConfirmService } from '../../core' |
16 | import { RestExtractor, VideoBlacklistService } from '../../shared' | 16 | import { RestExtractor, VideoBlacklistService } from '../../shared' |
@@ -368,7 +368,7 @@ export class VideoWatchComponent implements OnInit, OnDestroy { | |||
368 | inactivityTimeout: 2500, | 368 | inactivityTimeout: 2500, |
369 | videoFiles: this.video.files, | 369 | videoFiles: this.video.files, |
370 | playerElement: this.playerElement, | 370 | playerElement: this.playerElement, |
371 | videoViewUrl: this.videoService.getVideoViewUrl(this.video.uuid), | 371 | videoViewUrl: this.video.privacy.id !== VideoPrivacy.PRIVATE ? this.videoService.getVideoViewUrl(this.video.uuid) : null, |
372 | videoDuration: this.video.duration, | 372 | videoDuration: this.video.duration, |
373 | enableHotkeys: true, | 373 | enableHotkeys: true, |
374 | peertubeLink: false, | 374 | peertubeLink: false, |