diff options
author | Chocobozzz <me@florianbigard.com> | 2020-05-05 16:27:46 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2020-05-05 16:27:46 +0200 |
commit | 1c3206736743646d41a667c03f3e499cc3e3373f (patch) | |
tree | 688fe935a0cdf6892b3f5211a950bc440fa2ccb1 /server/models/video | |
parent | 7139845894ae24af397989f85350471cc5b91e2a (diff) | |
download | PeerTube-1c3206736743646d41a667c03f3e499cc3e3373f.tar.gz PeerTube-1c3206736743646d41a667c03f3e499cc3e3373f.tar.zst PeerTube-1c3206736743646d41a667c03f3e499cc3e3373f.zip |
Fix HLS audio only transcoding
Diffstat (limited to 'server/models/video')
-rw-r--r-- | server/models/video/video-playlist.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/models/video/video-playlist.ts b/server/models/video/video-playlist.ts index b17fd1060..b9b95e067 100644 --- a/server/models/video/video-playlist.ts +++ b/server/models/video/video-playlist.ts | |||
@@ -230,7 +230,7 @@ export class VideoPlaylistModel extends Model<VideoPlaylistModel> { | |||
230 | 230 | ||
231 | @AllowNull(true) | 231 | @AllowNull(true) |
232 | @Is('VideoPlaylistDescription', value => throwIfNotValid(value, isVideoPlaylistDescriptionValid, 'description', true)) | 232 | @Is('VideoPlaylistDescription', value => throwIfNotValid(value, isVideoPlaylistDescriptionValid, 'description', true)) |
233 | @Column | 233 | @Column(DataType.STRING(CONSTRAINTS_FIELDS.VIDEO_PLAYLISTS.DESCRIPTION.max)) |
234 | description: string | 234 | description: string |
235 | 235 | ||
236 | @AllowNull(false) | 236 | @AllowNull(false) |