File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -230,9 +230,10 @@ function HostnameConfirmed() {
230
230
231
231
function SetupHostnameBanner() {
232
232
let showHostnameBanner = false;
233
- console.log(settings.hasOwnProperty('hostnameConfirmed'));
234
- if (!(settings.hasOwnProperty('hostnameConfirmed') && $settings["HostName"] == "FPP")) {
235
- showHostnameBanner = true;
233
+ if (settings.hasOwnProperty('HostName') && settings.HostName == "FPP") {
234
+ if (!settings.hasOwnProperty('hostnameConfirmed')) {
235
+ showHostnameBanner = true;
236
+ }
236
237
}
237
238
238
239
if (showHostnameBanner) {
Original file line number Diff line number Diff line change 1256
1256
"regexDesc" : " Host names must contain only letters, numbers and hyphens" ,
1257
1257
"platforms" : [
1258
1258
" !MacOS"
1259
+ ],
1260
+ "exposedAsJSToPages" : [
1261
+ " index"
1259
1262
]
1260
1263
},
1261
1264
"Latitude" : {
You can’t perform that action at this time.
0 commit comments