1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-26 22:13:53 +01:00

fmlist integration hotfix

This commit is contained in:
NoobishSVK
2024-09-15 15:03:36 +02:00
parent e29e3a3f04
commit 9dc51a5c5b
3 changed files with 5 additions and 5 deletions

View File

@@ -62,7 +62,7 @@ router.get('/', (req, res) => {
device: serverConfig.device, device: serverConfig.device,
noPlugins, noPlugins,
plugins: serverConfig.plugins, plugins: serverConfig.plugins,
fmlist_integration: serverConfig.fmlist_integration ? serverConfig.fmlist_integration : true, fmlist_integration: typeof(serverConfig.extras?.fmlistIntegration) !== undefined ? serverConfig.extras.fmlistIntegration : true,
bwSwitch: serverConfig.bwSwitch ? serverConfig.bwSwitch : false bwSwitch: serverConfig.bwSwitch ? serverConfig.bwSwitch : false
}); });
} }

View File

@@ -46,8 +46,8 @@ let serverConfig = {
adminPass: "" adminPass: ""
}, },
extras: { extras: {
fmlist_integration: true, fmlistIntegration: true,
fmlist_omid: "", fmlistOmid: "",
}, },
plugins: [], plugins: [],
device: 'tef', device: 'tef',

View File

@@ -356,11 +356,11 @@
<div class="form-group checkbox"> <div class="form-group checkbox">
<input type="checkbox" tabindex="0" id="extended-frequency-range" aria-label="Add decimals manually"> <input type="checkbox" tabindex="0" id="extended-frequency-range" aria-label="Add decimals manually">
<label for="extended-frequency-range" class="tooltip" data-tooltip="Enabling this will allow you to enter the decimal point manually.<br>Useful for servers that use upconverters."><i class="fa-solid fa-toggle-off m-right-10"></i> Manual decimal entry</label> <label for="extended-frequency-range" class="tooltip" data-tooltip="Enabling this will allow you to enter the decimal point manually.<br>Useful for servers that use upconverters."><i class="fa-solid fa-toggle-off m-right-10"></i> Manual decimals</label>
</div> </div>
<div class="form-group checkbox"> <div class="form-group checkbox">
<input type="checkbox" tabindex="0" id="ps-underscores" aria-label="Add underscores to RDS PS"> <input type="checkbox" tabindex="0" id="ps-underscores" aria-label="Add underscores to RDS PS">
<label for="ps-underscores" class="tooltip" data-tooltip="Enabling this option replaces spaces in RDS PS with underscores."><i class="fa-solid fa-toggle-off m-right-10"></i> Underscores in RDS PS</label> <label for="ps-underscores" class="tooltip" data-tooltip="Enabling this option replaces spaces in RDS PS with underscores."><i class="fa-solid fa-toggle-off m-right-10"></i> RDS PS Underscores</label>
</div> </div>
<div class="form-group bottom-20 hide-desktop" style="float: none;"> <div class="form-group bottom-20 hide-desktop" style="float: none;">