mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 15:15:34 +03:00
more terms to ignore from package names
This commit is contained in:
parent
4008fb3a53
commit
c6fe456cac
1 changed files with 2 additions and 1 deletions
|
@ -13,7 +13,8 @@ namespace Bit.App.Services
|
||||||
{
|
{
|
||||||
public class LoginService : ILoginService
|
public class LoginService : ILoginService
|
||||||
{
|
{
|
||||||
private readonly string[] _ignoredSearchTerms = new string[] { "com", "net", "org", "android" };
|
private readonly string[] _ignoredSearchTerms = new string[] { "com", "net", "org", "android",
|
||||||
|
"io", "co", "uk", "au", "nz", "fr", "de", "tv", "info", "app", "apps", "eu", "me", "dev", "jp", "mobile" };
|
||||||
private readonly ILoginRepository _loginRepository;
|
private readonly ILoginRepository _loginRepository;
|
||||||
private readonly IAttachmentRepository _attachmentRepository;
|
private readonly IAttachmentRepository _attachmentRepository;
|
||||||
private readonly IAuthService _authService;
|
private readonly IAuthService _authService;
|
||||||
|
|
Loading…
Reference in a new issue