more terms to ignore from package names

This commit is contained in:
Kyle Spearrin 2017-09-12 17:18:59 -04:00
parent 4008fb3a53
commit c6fe456cac
1 changed files with 2 additions and 1 deletions

View File

@ -13,7 +13,8 @@ namespace Bit.App.Services
{
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 IAttachmentRepository _attachmentRepository;
private readonly IAuthService _authService;