aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-main/video/video-edit.model.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-01-12 08:50:27 +0100
committerChocobozzz <me@florianbigard.com>2023-01-12 08:50:27 +0100
commit7a0bcd67735ca43d8afa50bfcd4624de383553a7 (patch)
treed615b97f750d0c0096315fc12da9864abdced8e7 /client/src/app/shared/shared-main/video/video-edit.model.ts
parent8180f60477e99c4fd70ce25729d1ca65155a6686 (diff)
downloadPeerTube-7a0bcd67735ca43d8afa50bfcd4624de383553a7.tar.gz
PeerTube-7a0bcd67735ca43d8afa50bfcd4624de383553a7.tar.zst
PeerTube-7a0bcd67735ca43d8afa50bfcd4624de383553a7.zip
Fix support field when updating the video
Diffstat (limited to 'client/src/app/shared/shared-main/video/video-edit.model.ts')
-rw-r--r--client/src/app/shared/shared-main/video/video-edit.model.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/client/src/app/shared/shared-main/video/video-edit.model.ts b/client/src/app/shared/shared-main/video/video-edit.model.ts
index 4cff01653..91d57cb6b 100644
--- a/client/src/app/shared/shared-main/video/video-edit.model.ts
+++ b/client/src/app/shared/shared-main/video/video-edit.model.ts
@@ -47,6 +47,9 @@ export class VideoEdit implements VideoUpdate {
47 this.waitTranscoding = video.waitTranscoding 47 this.waitTranscoding = video.waitTranscoding
48 this.channelId = video.channel.id 48 this.channelId = video.channel.id
49 this.privacy = video.privacy.id 49 this.privacy = video.privacy.id
50
51 this.support = video.support
52
50 this.commentsEnabled = video.commentsEnabled 53 this.commentsEnabled = video.commentsEnabled
51 this.downloadEnabled = video.downloadEnabled 54 this.downloadEnabled = video.downloadEnabled
52 55