diff --git a/emhttp/plugins/dynamix/Wireless.page b/emhttp/plugins/dynamix/Wireless.page index 793e1110b..afe7636a5 100644 --- a/emhttp/plugins/dynamix/Wireless.page +++ b/emhttp/plugins/dynamix/Wireless.page @@ -83,7 +83,7 @@ function update_wifi(load) { var wifi = JSON.parse(text); $('#connected').html(wifi.active); $('#my_networks').html(wifi.saved); - if (wifi.other.length) $('#other_networks').html(wifi.other); + if (typeof wifi.other == 'string') $('#other_networks').html(wifi.other); } }); timers.wifi = setTimeout(update_wifi,6000);