Fix proxy error on playersite (datarhei/restreamer#525)

This commit is contained in:
Jan Stabenow 2023-03-17 18:07:24 +01:00
parent cef6efbac0
commit 42f918baf2
No known key found for this signature in database
GPG Key ID: 9C22DD65A9AAF133
3 changed files with 9 additions and 6 deletions

View File

@ -2,8 +2,11 @@
## v1.7.0 > v1.x.x
- Fix internal player skin (volume bar)
- Add Add stream key field and protocol detection to RTMP publication service
- Fix proxy error on the playersite ([#525](https://github.com/datarhei/restreamer/issues/525))
- Fix saving RTMP advanced options ([#518](https://github.com/datarhei/restreamer/issues/518))
- Fix help buttons for other languages than English and German ([#24](https://github.com/datarhei/restreamer-ui/issues/24))
- Fix internal player skin (volume bar)
## v1.6.0 > v1.7.0

View File

@ -438,11 +438,11 @@
</div>
<div class="col-xs-12 channel-list-inside">
{{#each channels}}
<a class="channel-list-link" href="/playersite_{{this.channelid}}.html" target="_self">
<a class="channel-list-link" href="playersite_{{this.channelid}}.html" target="_self">
<div class="row channel-list-l1 {{#ifEquals @root.channel_id this.channelid}}channel-list-selected{{/ifEquals}}">
<div class="col-xs-12 middle-xs channel-list-l2">
<span id="channel_list_badge_{{this.channelid}}_1" class="channel-list-badge">LIVE</span>
<img src="/memfs/{{this.channelid}}.jpg" class="channel-list-image">
<img src="memfs/{{this.channelid}}.jpg" class="channel-list-image">
<div class="row">
<div class="channel-list-description">
{{this.name}}
@ -498,11 +498,11 @@
</div>
<div class="col-xs-12 col-sm-12">
{{#each channels}}
<a class="channel-list-link" href="/playersite_{{this.channelid}}.html" target="_self">
<a class="channel-list-link" href="playersite_{{this.channelid}}.html" target="_self">
<div class="row channel-list-l1 {{#ifEquals @root.channel_id this.channelid}}channel-list-selected{{/ifEquals}}">
<div class="col-xs-12 middle-xs channel-list-l2">
<span id="channel_list_badge_{{this.channelid}}_2" class="channel-list-badge">LIVE</span>
<img src="/memfs/{{this.channelid}}.jpg" class="channel-list-image">
<img src="memfs/{{this.channelid}}.jpg" class="channel-list-image">
<div class="row">
<div class="channel-list-description">
{{this.name}}

View File

@ -7,7 +7,7 @@ var config = {
responsive: true,
fluid: true,
// Needed to append the url orgin in order for the source to properly pass to the cast device
sources: [{ src: window.location.origin + '/' + playerConfig.source, type: 'application/x-mpegURL' }],
sources: [{ src: playerConfig.source, type: 'application/x-mpegURL' }],
plugins: {
license: playerConfig.license,
},