fix path
This commit is contained in:
parent
9832a5e12c
commit
c02141af54
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ffplayout-frontend",
|
||||
"version": "5.1.0",
|
||||
"version": "5.1.1",
|
||||
"description": "Web GUI for ffplayout",
|
||||
"author": "Jonathan Baecker",
|
||||
"private": true,
|
||||
|
@ -463,7 +463,7 @@ export default {
|
||||
sources: [
|
||||
{
|
||||
type: `video/${ext}`,
|
||||
src: '/' + encodeURIComponent(src.replace(/^[/]+/, ''))
|
||||
src: '/' + encodeURIComponent(src.replace(/^[/]+/, '').replace(/[/]+/, '/')).replace(/%2F/g, '/')
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -617,7 +617,7 @@ export default {
|
||||
sources: [
|
||||
{
|
||||
type: `video/${ext}`,
|
||||
src: '/' + encodeURIComponent(src.replace(/^\//, ''))
|
||||
src: '/' + encodeURIComponent(src.replace(/^[/]+/, '').replace(/[/]+/, '/')).replace(/%2F/g, '/')
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user