comment out TODO code

This commit is contained in:
Kyle Spearrin 2018-03-02 08:15:31 -05:00
parent 063bb010db
commit 20389402fc
1 changed files with 7 additions and 6 deletions

View File

@ -196,12 +196,13 @@ export class CipherService implements CipherServiceAbstraction {
const ciphers = result[1];
return ciphers.filter((cipher) => {
if (domain && cipher.type === CipherType.Login && cipher.login.domain &&
matchingDomains.indexOf(cipher.login.domain) > -1) {
return true;
} else if (includeOtherTypes && includeOtherTypes.indexOf(cipher.type) > -1) {
return true;
}
// TODO: uris
//if (domain && cipher.type === CipherType.Login && cipher.login.domain &&
// matchingDomains.indexOf(cipher.login.domain) > -1) {
// return true;
//} else if (includeOtherTypes && includeOtherTypes.indexOf(cipher.type) > -1) {
// return true;
//}
return false;
});