diff options
-rw-r--r-- | localwebsite/htdocs/assets/app.js | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/localwebsite/htdocs/assets/app.js b/localwebsite/htdocs/assets/app.js index e72ecd9..664afba 100644 --- a/localwebsite/htdocs/assets/app.js +++ b/localwebsite/htdocs/assets/app.js @@ -272,10 +272,13 @@ window.Cameras = { this.hlsOptions = opts.hlsConfig; this.h265webjsOptions = opts.h265webjsConfig; - let useHls = Hls.isSupported(); - if (!useHls && !this.hasFallbackSupport() && opts.hlsConfig !== undefined) { - alert('Neither HLS nor vnd.apple.mpegurl is not supported by your browser.'); - return; + var useHls; + if (opts.hlsConfig !== undefined) { + useHls = Hls.isSupported(); + if (!useHls && !this.hasFallbackSupport()) { + alert('Neither HLS nor vnd.apple.mpegurl is not supported by your browser.'); + return; + } } for (var camId in opts.camsByType) { |