Fix Icecast publication service settings (datarhei/restreamer#429)

This commit is contained in:
Jan Stabenow 2022-10-17 22:28:15 +02:00
parent 76ac60cc5b
commit 9d3fdb5c41
No known key found for this signature in database
GPG Key ID: 9C22DD65A9AAF133
3 changed files with 7 additions and 3 deletions

View File

@ -2,6 +2,8 @@
### v1.4.0 > v1.4.1
- Fix use of TLS for input from local RTMP server
- Fix Icecast publication service settings
- Fix removes SRT bitstream on tee (OBS > RTMP > SRT is faulty)
### v1.3.0 > v1.4.0
@ -14,9 +16,9 @@ Dependency:
### v1.2.0 > v1.3.0
- Add dlive & Trovo publication services
- Add low_delay option to processing (default: true)
- Mod uses the ingest stream for publication (datarhei/restreamer#411)
- Add dlive & Trovo publication services
- Mod optimized DVR on DiskFS
- Mod updates packages
- Fix SRT bitstream on tee

View File

@ -1,6 +1,6 @@
{
"name": "restreamer-ui",
"version": "1.4.0",
"version": "1.4.1",
"bundle": "restreamer-v2.3.0",
"private": false,
"license": "Apache-2.0",
@ -92,4 +92,4 @@
"url-parse@1.5.3": "patch:url-parse@npm:1.5.3#.yarn/patches/url-parse-npm-1.5.3-225ab9cae7.patch",
"react-error-overlay": "6.0.9"
}
}
}

View File

@ -87,6 +87,8 @@ function Service(props) {
} else {
settings.options[what] = value;
}
} else {
settings[what] = value;
}
const output = createOutput(settings);