mirror of
https://github.com/DevL0rd/SkyNX
synced 2024-11-21 18:43:03 +00:00
Small Fix for First Startup
Silly Mistake...
This commit is contained in:
parent
4be27bc771
commit
cb1569dda1
2 changed files with 2 additions and 2 deletions
|
@ -156,7 +156,7 @@
|
|||
<hr />
|
||||
<div class="form-group">
|
||||
<label for="monitorInput">Monitor ID (0, 1, etc)</label>
|
||||
<input id="monitorInput" title="Typically your primary monitor is ID 0, however due to Windows stuff this isn't always the case... MUST BE A NUMBER!" type="text" class="form-control" placeholder="0">
|
||||
<input id="monitorInput" title="Typically your primary monitor is ID 0, however due to Windows stuff this isn't always the case... MUST BE A NUMBER!" type="text" class="form-control" value="0">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="switch">
|
||||
|
|
|
@ -33,7 +33,7 @@ function initSettings() {
|
|||
clientSettings.ip = "0.0.0.0";
|
||||
}
|
||||
if (!clientSettings.hasOwnProperty("monitorID")) {
|
||||
clientSettings.ip = "0";
|
||||
clientSettings.monitorID = "0";
|
||||
}
|
||||
if (!clientSettings.hasOwnProperty("quality")) {
|
||||
clientSettings.quality = 5;
|
||||
|
|
Loading…
Reference in a new issue