Implemented a probe continuity test before probing

This commit is contained in:
David Carley
2021-03-02 10:16:24 -08:00
parent a0ae0a4e30
commit 4a23455621
3 changed files with 47 additions and 15 deletions

View File

@@ -359,13 +359,13 @@ module.exports = new Vue({
// },
get_ip_address : function() {
console.debug('get_ip>', this.ipAddress);
return this.ipAddress;
console.debug('get_ip>', this.ipAddress);
return this.ipAddress;
},
get_ssid : function() {
console.debug('get_ssid>', this.wifiSSID);
return this.wifiSSID;
console.debug('get_ssid>', this.wifiSSID);
return this.wifiSSID;
},
// get_disk_space : function() {
@@ -408,6 +408,11 @@ module.exports = new Vue({
}
update_object(this.state, e.data, false);
if (this.state.pw === 0) {
Vue.set(this.state, "probe_connected", true);
}
this.$broadcast('update');
}.bind(this)