fixed settings storage

merge-requests/237/merge
Christian Bayer 2023-08-28 16:52:43 -04:00
rodzic ea8559af14
commit 8b67e8cb36
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 090D0F8B431A7C88
4 zmienionych plików z 8 dodań i 10 usunięć

Wyświetl plik

@ -2983,9 +2983,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
<tr>
<td>
<label data-i18n="settings.OAMS.simplepush.enable.label" for="msgSimplepush">Enable / Disable Simplepush Message forwarding</label>
<input title="Enable / Disable Simplepush" type="checkbox" checked="false" id="msgSimplepush"
onclick="newMessageSetting(this);" />
<!-- onclick="setOamsSimplepush(this);" />-->
<input title="Enable / Disable Simplepush" type="checkbox" id="msgSimplepush"
onclick="setOamsSimplepush(this);" />
</td>
</tr>
<tr>
@ -3006,9 +3005,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
<tr>
<td>
<label data-i18n="settings.OAMS.pushover.enable.label" for="msgPushover">Enable / Disable Pushover Message forwarding</label>
<input title="Enable / Disable Pushover" type="checkbox" checked="false" id="msgPushover"
onclick="newMessageSetting(this);" />
<!-- onclick="setOamsPushover(this);" />-->
<input title="Enable / Disable Pushover" type="checkbox" id="msgPushover"
onclick="setOamsPushover(this);" />
</td>
</tr>
<tr>

Wyświetl plik

@ -194,9 +194,9 @@ var def_msgSettings = {
msgActionSelect: 1,
msgAwaySelect: 0,
msgAwayText: "I am away from the shack at the moment",
msgSimplepush: false,
msgSimplepush: 0,
msgSimplePushApiKey: "",
msgPushover: false,
msgPushover: 0,
msgPushoverUsername: "",
msgPushoverToken: ""
};

Wyświetl plik

@ -16204,4 +16204,4 @@ function refreshSpotsNoTx()
}
nodeTimers.setInterval(refreshSpotsNoTx, 300000);
nodeTimers.setTimeout(refreshSpotsNoTx, 300000);
nodeTimers.setTimeout(refreshSpotsNoTx, 300000);

Wyświetl plik

@ -868,4 +868,4 @@ function alertChatMessage()
playAlertMediaFile(GT.msgSettings.msgAlertMedia);
}
GT.lastChatMsgAlert = timeNowSec();
}
}