Browse Source

hls: return 404 when requesting hls.min.js.map (#2262)

pull/2263/head
Alessandro Ros 2 years ago committed by GitHub
parent
commit
8e955d2119
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      internal/core/hls_http_server.go

2
internal/core/hls_http_server.go

@ -128,7 +128,7 @@ func (s *hlsHTTPServer) onRequest(ctx *gin.Context) { @@ -128,7 +128,7 @@ func (s *hlsHTTPServer) onRequest(ctx *gin.Context) {
ctx.Writer.Write(hlsMinJS)
return
case pa == "", pa == "favicon.ico":
case pa == "", pa == "favicon.ico", strings.HasSuffix(pa, "/hls.min.js.map"):
return
case strings.HasSuffix(pa, ".m3u8") ||

Loading…
Cancel
Save