Start work towards manually added servers

This commit is contained in:
2021-03-28 16:28:39 -05:00
parent ce64f24b4b
commit e08ba30d91
7 changed files with 202 additions and 33 deletions
@@ -29,8 +29,12 @@ namespace qController.ViewModels
{
Task.Run(async () =>
{
if(autoUpdate)
if (autoUpdate)
{
//Log.Debug("[QBrowserViewModel] Auto update scan ran");
this.browser.ProbeForQLabInstances();
}
});
return true;
});
@@ -76,5 +80,14 @@ namespace qController.ViewModels
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(name));
}
public void InitiateScan()
{
if (!autoUpdate)
{
Log.Debug("[QBrowserViewModel] Manual Scan Initiated");
this.browser.ProbeForQLabInstances();
}
}
}
}