Improved SearchForURL:

if URL is facebook.com this will be displayed in the Host-Search results for www.facebook.com as well as for m.facebook.com
This commit is contained in:
PhilippC 2013-03-16 07:15:56 +01:00
parent 11e7172fe6
commit 5370e73639

View File

@ -120,7 +120,7 @@ namespace keepass2android
{ {
continue; continue;
} }
if (otherHost.Equals(host, StringComparison.InvariantCultureIgnoreCase)) if (host.IndexOf(otherHost, StringComparison.InvariantCultureIgnoreCase) > -1)
{ {
pgResults.AddEntry(entry, false); pgResults.AddEntry(entry, false);
} }