Skip to content

Commit

Permalink
Fix wrongly displayed SRT URL (datahrei/restreamer#635)
Browse files Browse the repository at this point in the history
  • Loading branch information
ioppermann committed Dec 4, 2023
1 parent dae04e7 commit f4c9fbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/Edit/Sources/Network.js
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ const getSRTAddress = (host, name, token, passphrase, publish) => {
host +
'?mode=caller&transtype=live&streamid=' +
name +
',mode:' +
'.stream,mode:' +
(publish ? 'publish' : 'request') +
(token.length !== 0 ? ',token:' + encodeURIComponent(token) : '');

Expand Down Expand Up @@ -654,7 +654,7 @@ function AdvancedSettings(props) {
? 'analyzeduration_http'
: protocolClass === 'rtmp'
? 'analyzeduration_rtmp'
: 'analyzeduration'
: 'analyzeduration',
)}
/>
<Typography variant="caption">
Expand Down

0 comments on commit f4c9fbe

Please sign in to comment.