remove token from hls url

- following PR #4263
This commit is contained in:
laxandrea 2025-08-19 15:29:49 +02:00
parent a89a24e48e
commit 2cc6e56bd1
2 changed files with 6 additions and 6 deletions

View file

@ -146,7 +146,7 @@ class Stream extends EventEmitter {
async generatePlaylist() {
await fs.ensureDir(this.streamPath)
await hlsPlaylistGenerator(this.playlistPath, 'output', this.totalDuration, this.segmentLength, this.hlsSegmentType, this.userToken)
await hlsPlaylistGenerator(this.playlistPath, 'output', this.totalDuration, this.segmentLength, this.hlsSegmentType)
return this.clientPlaylistUri
}