mirror of
https://github.com/moparisthebest/keepass2android
synced 2024-12-23 15:38:47 -05:00
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:
parent
11e7172fe6
commit
5370e73639
@ -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);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user