Fix check for legacy adb devices

This commit is contained in:
baldurk
2019-08-07 15:18:08 +01:00
parent 3eccdfcbe0
commit 8382d3e4f1
@@ -377,7 +377,7 @@ bool PersistantConfig::Load(const rdcstr &filename)
continue;
// backwards compatibility - skip old adb hosts that were adb:
if(host.Hostname().find("adb:") > 0 && host.Protocol() == NULL)
if(host.Hostname().find("adb:") >= 0 && host.Protocol() == NULL)
continue;
RemoteHostList.push_back(host);