diff options
author | Chocobozzz <me@florianbigard.com> | 2022-01-06 10:37:49 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-01-06 10:37:55 +0100 |
commit | 75b7117f078461d2507572ba9da6527894e1b734 (patch) | |
tree | cbf0882c7a525717552fe0033f8b60ed244e82bd /server/lib/live/shared | |
parent | f8360396ffabd2f95e9ece9c5755173bae0114b6 (diff) | |
download | PeerTube-75b7117f078461d2507572ba9da6527894e1b734.tar.gz PeerTube-75b7117f078461d2507572ba9da6527894e1b734.tar.zst PeerTube-75b7117f078461d2507572ba9da6527894e1b734.zip |
Remove unnecessary NPM_RUN_BUILD_OPTS docker arg
Diffstat (limited to 'server/lib/live/shared')
-rw-r--r-- | server/lib/live/shared/muxing-session.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/live/shared/muxing-session.ts b/server/lib/live/shared/muxing-session.ts index eccaefcfa..22a47942a 100644 --- a/server/lib/live/shared/muxing-session.ts +++ b/server/lib/live/shared/muxing-session.ts | |||
@@ -229,7 +229,7 @@ class MuxingSession extends EventEmitter { | |||
229 | 229 | ||
230 | const playlistIdMatcher = /^([\d+])-/ | 230 | const playlistIdMatcher = /^([\d+])-/ |
231 | 231 | ||
232 | const addHandler = async segmentPath => { | 232 | const addHandler = async (segmentPath: string) => { |
233 | logger.debug('Live add handler of %s.', segmentPath, this.lTags()) | 233 | logger.debug('Live add handler of %s.', segmentPath, this.lTags()) |
234 | 234 | ||
235 | const playlistId = basename(segmentPath).match(playlistIdMatcher)[0] | 235 | const playlistId = basename(segmentPath).match(playlistIdMatcher)[0] |