diff options
Diffstat (limited to 'client/src/app/shared/shared-video-miniature')
-rw-r--r-- | client/src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/client/src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts b/client/src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts index 39358e08b..4ef17bfe3 100644 --- a/client/src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts +++ b/client/src/app/shared/shared-video-miniature/video-actions-dropdown.component.ts | |||
@@ -146,7 +146,10 @@ export class VideoActionsDropdownComponent implements OnChanges { | |||
146 | } | 146 | } |
147 | 147 | ||
148 | isVideoDownloadable () { | 148 | isVideoDownloadable () { |
149 | return this.video && this.video instanceof VideoDetails && this.video.downloadEnabled | 149 | return this.video && |
150 | this.video.isLive !== true && | ||
151 | this.video instanceof VideoDetails && | ||
152 | this.video.downloadEnabled | ||
150 | } | 153 | } |
151 | 154 | ||
152 | canVideoBeDuplicated () { | 155 | canVideoBeDuplicated () { |