delete SUBSTREAM parameter

This commit is contained in:
Ivan 2023-09-29 00:51:04 +03:00
parent 9d98f5d800
commit 9a1e329adc
Signed by untrusted user who does not match committer: ppechenkoo
GPG Key ID: 0C191B86D9582583
3 changed files with 0 additions and 14 deletions

View File

@ -2859,9 +2859,7 @@ app.put('/device-parameters', async (req, res) => {
DATEMOD,
TIMEFORMAT,
LANGUAGE,
VIDEOFORMAT,
GEOMOD,
SUBSTREAMMODE,
TIMEZ,
NE,
TE,

View File

@ -129,7 +129,6 @@ for (let radioButton of radioButtons) {
document.getElementById('system-language').value = data.DATA.GSP.LANT;
document.getElementById('system-timezone').value = data.DATA.TIMEP.TIMEZ;
document.getElementById('system-geo').value = data.DATA.GSP.GM;
document.getElementById('system-stream').value = data.DATA.SUBSTRNET.SM;
document.getElementById('NE').checked = data.DATA.EOSD[0].NE === 1;
document.getElementById('TE').checked = data.DATA.EOSD[0].TE === 1;
document.getElementById('VE').checked = data.DATA.EOSD[0].VE === 1;

View File

@ -208,15 +208,6 @@
<option value="720A">(МСК+9) Камчатка</option>
</select>
</div>
<div class="parameters-input">
<label for="system-stream">Формат трансляции</label>
<select name="SUBSTREAMMODE" id="system-stream">
<option value="0">Плавно</option>
<option value="1">Менее качественно, но более плавно</option>
<option value="2">Менее плавно, но более качественно</option>
<option value="3">Качество</option>
</select>
</div>
<div class="parameters-input">
<label for="system-language">Язык системы</label>
<select name="LANGUAGE" id="system-language">
@ -944,7 +935,6 @@ const requestBody = {
const DATEMOD = document.getElementById('system-date').value;
const TIMEFORMAT = document.getElementById('system-time').value;
const SUBSTREAMMODE = document.getElementById('system-stream').value;
const LANGUAGE = document.getElementById('system-language').value;
const GEOMOD = document.getElementById('system-geo').value;
const TIMEZ = document.getElementById('system-timezone').value;
@ -961,7 +951,6 @@ const requestBody = {
const requestData = {
DATEMOD,
TIMEFORMAT,
SUBSTREAMMODE,
LANGUAGE,
GEOMOD,
TIMEZ,