add "Login" suipport for msecure

This commit is contained in:
Kyle Spearrin 2019-04-01 23:52:13 -04:00
parent 1044a8759a
commit e5d6861662
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ export class MSecureCsvImporter extends BaseImporter implements Importer {
const cipher = this.initLoginCipher();
cipher.name = this.getValueOrDefault(value[2], '--');
if (value[1] === 'Web Logins') {
if (value[1] === 'Web Logins' || value[1] === 'Login') {
cipher.login.uris = this.makeUriArray(value[4]);
cipher.login.username = this.getValueOrDefault(value[5]);
cipher.login.password = this.getValueOrDefault(value[6]);