From 6f3806845d2800a9ecb0413a174c73d9949c8754 Mon Sep 17 00:00:00 2001 From: ServiusHack Date: Tue, 9 Oct 2018 21:40:06 +0200 Subject: [PATCH] Remove artificial limit on name length (#14) --- src/importers/passmanJsonImporter.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/importers/passmanJsonImporter.ts b/src/importers/passmanJsonImporter.ts index 08c39cef929..8e2346f0b8c 100644 --- a/src/importers/passmanJsonImporter.ts +++ b/src/importers/passmanJsonImporter.ts @@ -20,9 +20,6 @@ export class PassmanJsonImporter extends BaseImporter implements Importer { const cipher = this.initLoginCipher(); cipher.name = credential.label; - if (cipher.name != null && cipher.name.length > 30) { - cipher.name = cipher.name.substring(0, 30); - } cipher.login.username = this.getValueOrDefault(credential.username); if (this.isNullOrWhitespace(cipher.login.username)) {