diff options
author | Chocobozzz <me@florianbigard.com> | 2021-12-09 11:23:02 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-12-09 11:23:02 +0100 |
commit | 6ba93fa6392429f22d338f3cdce50707995ced3b (patch) | |
tree | 58b7ad9976109464d8a70e53c061168747ef5930 /server/models | |
parent | 2acb622cb8f6b273ba9a03d5e37630d19a3d3e30 (diff) | |
download | PeerTube-6ba93fa6392429f22d338f3cdce50707995ced3b.tar.gz PeerTube-6ba93fa6392429f22d338f3cdce50707995ced3b.tar.zst PeerTube-6ba93fa6392429f22d338f3cdce50707995ced3b.zip |
Fix torrent metadata update for hls
Diffstat (limited to 'server/models')
-rw-r--r-- | server/models/video/video.ts | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/server/models/video/video.ts b/server/models/video/video.ts index 801e23f55..1050463d2 100644 --- a/server/models/video/video.ts +++ b/server/models/video/video.ts | |||
@@ -1539,21 +1539,6 @@ export class VideoModel extends Model<Partial<AttributesOnly<VideoModel>>> { | |||
1539 | return this.VideoChannel.Account.Actor.Server?.isBlocked() || this.VideoChannel.Account.isBlocked() | 1539 | return this.VideoChannel.Account.Actor.Server?.isBlocked() || this.VideoChannel.Account.isBlocked() |
1540 | } | 1540 | } |
1541 | 1541 | ||
1542 | getAllFiles () { | ||
1543 | let files: MVideoFile[] = [] | ||
1544 | |||
1545 | if (Array.isArray(this.VideoFiles)) { | ||
1546 | files = files.concat(this.VideoFiles) | ||
1547 | } | ||
1548 | |||
1549 | const hls = this.getHLSPlaylist() | ||
1550 | if (hls) { | ||
1551 | files = files.concat(hls.VideoFiles) | ||
1552 | } | ||
1553 | |||
1554 | return files | ||
1555 | } | ||
1556 | |||
1557 | getQualityFileBy<T extends MVideoWithFile> (this: T, fun: (files: MVideoFile[], it: (file: MVideoFile) => number) => MVideoFile) { | 1542 | getQualityFileBy<T extends MVideoWithFile> (this: T, fun: (files: MVideoFile[], it: (file: MVideoFile) => number) => MVideoFile) { |
1558 | // We first transcode to WebTorrent format, so try this array first | 1543 | // We first transcode to WebTorrent format, so try this array first |
1559 | if (Array.isArray(this.VideoFiles) && this.VideoFiles.length !== 0) { | 1544 | if (Array.isArray(this.VideoFiles) && this.VideoFiles.length !== 0) { |