aboutsummaryrefslogtreecommitdiffhomepage
path: root/server
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-01-06 10:37:49 +0100
committerChocobozzz <me@florianbigard.com>2022-01-06 10:37:55 +0100
commit75b7117f078461d2507572ba9da6527894e1b734 (patch)
treecbf0882c7a525717552fe0033f8b60ed244e82bd /server
parentf8360396ffabd2f95e9ece9c5755173bae0114b6 (diff)
downloadPeerTube-75b7117f078461d2507572ba9da6527894e1b734.tar.gz
PeerTube-75b7117f078461d2507572ba9da6527894e1b734.tar.zst
PeerTube-75b7117f078461d2507572ba9da6527894e1b734.zip
Remove unnecessary NPM_RUN_BUILD_OPTS docker arg
Diffstat (limited to 'server')
-rw-r--r--server/lib/live/shared/muxing-session.ts2
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]