Merge pull request #4408 from jellyfin/fix/playback-hls-update

fix(hls): playback should work without bundling hls
This commit is contained in:
Bill Thornton 2023-03-22 00:38:47 -04:00 committed by GitHub
commit 1c9b6005ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 9 deletions

14
package-lock.json generated
View File

@ -30,7 +30,7 @@
"flv.js": "1.6.2",
"headroom.js": "0.12.0",
"history": "5.3.0",
"hls.js": "1.3.4",
"hls.js": "1.2.4",
"intersection-observer": "0.12.2",
"jellyfin-apiclient": "1.10.0",
"jquery": "3.6.3",
@ -8468,9 +8468,9 @@
}
},
"node_modules/hls.js": {
"version": "1.3.4",
"resolved": "https://registry.npmjs.org/hls.js/-/hls.js-1.3.4.tgz",
"integrity": "sha512-iFEwVqtEDk6sKotcTwtJ5OMo/nuDTk9PrpB8FI2J2WYf8EriTVfR4FaK0aNyYtwbYeRSWCXJKlz23xeREdlNYg=="
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/hls.js/-/hls.js-1.2.4.tgz",
"integrity": "sha512-yC3K79Kzq1W+OgjT12JxKMDXv9DbfvulppxmPBl7D04SaTyd2IwWk5eNASQV1mUaPlKbjr16yI9292qpSGo0ig=="
},
"node_modules/hoist-non-react-statics": {
"version": "3.3.2",
@ -25398,9 +25398,9 @@
}
},
"hls.js": {
"version": "1.3.4",
"resolved": "https://registry.npmjs.org/hls.js/-/hls.js-1.3.4.tgz",
"integrity": "sha512-iFEwVqtEDk6sKotcTwtJ5OMo/nuDTk9PrpB8FI2J2WYf8EriTVfR4FaK0aNyYtwbYeRSWCXJKlz23xeREdlNYg=="
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/hls.js/-/hls.js-1.2.4.tgz",
"integrity": "sha512-yC3K79Kzq1W+OgjT12JxKMDXv9DbfvulppxmPBl7D04SaTyd2IwWk5eNASQV1mUaPlKbjr16yI9292qpSGo0ig=="
},
"hoist-non-react-statics": {
"version": "3.3.2",

View File

@ -89,7 +89,7 @@
"flv.js": "1.6.2",
"headroom.js": "0.12.0",
"history": "5.3.0",
"hls.js": "1.3.4",
"hls.js": "1.2.4",
"intersection-observer": "0.12.2",
"jellyfin-apiclient": "1.10.0",
"jquery": "3.6.3",

View File

@ -158,7 +158,6 @@ const config = {
path.resolve(__dirname, 'node_modules/dom7'),
path.resolve(__dirname, 'node_modules/epubjs'),
path.resolve(__dirname, 'node_modules/flv.js'),
path.resolve(__dirname, 'node_modules/hls.js'),
path.resolve(__dirname, 'node_modules/libarchive.js'),
path.resolve(__dirname, 'node_modules/marked'),
path.resolve(__dirname, 'node_modules/react-router'),