diff options
Diffstat (limited to 'client/src/app')
-rw-r--r-- | client/src/app/shared/video-caption/video-caption.service.ts | 2 | ||||
-rw-r--r-- | client/src/app/videos/+video-edit/video-add-components/video-send.ts | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/client/src/app/shared/video-caption/video-caption.service.ts b/client/src/app/shared/video-caption/video-caption.service.ts index 994882451..08fd61265 100644 --- a/client/src/app/shared/video-caption/video-caption.service.ts +++ b/client/src/app/shared/video-caption/video-caption.service.ts | |||
@@ -76,7 +76,7 @@ export class VideoCaptionService { | |||
76 | } | 76 | } |
77 | } | 77 | } |
78 | 78 | ||
79 | if (observables.length === 0) return of(true) | 79 | if (observables.length === 0) return of(undefined) |
80 | 80 | ||
81 | return forkJoin(observables) | 81 | return forkJoin(observables) |
82 | } | 82 | } |
diff --git a/client/src/app/videos/+video-edit/video-add-components/video-send.ts b/client/src/app/videos/+video-edit/video-add-components/video-send.ts index bfe588676..6d1bac3f2 100644 --- a/client/src/app/videos/+video-edit/video-add-components/video-send.ts +++ b/client/src/app/videos/+video-edit/video-add-components/video-send.ts | |||
@@ -13,7 +13,6 @@ import { VideoEdit } from '@app/shared/video/video-edit.model' | |||
13 | import { populateAsyncUserVideoChannels } from '@app/shared/misc/utils' | 13 | import { populateAsyncUserVideoChannels } from '@app/shared/misc/utils' |
14 | 14 | ||
15 | export abstract class VideoSend extends FormReactive implements OnInit, CanComponentDeactivate { | 15 | export abstract class VideoSend extends FormReactive implements OnInit, CanComponentDeactivate { |
16 | |||
17 | userVideoChannels: { id: number, label: string, support: string }[] = [] | 16 | userVideoChannels: { id: number, label: string, support: string }[] = [] |
18 | videoPrivacies: VideoConstant<VideoPrivacy>[] = [] | 17 | videoPrivacies: VideoConstant<VideoPrivacy>[] = [] |
19 | videoCaptions: VideoCaptionEdit[] = [] | 18 | videoCaptions: VideoCaptionEdit[] = [] |