Fix proxy error on playersite (datarhei/restreamer#525)
This commit is contained in:
parent
cef6efbac0
commit
42f918baf2
@ -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
|
||||
|
||||
|
||||
@ -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}}
|
||||
|
||||
@ -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,
|
||||
},
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user