mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
null ref on keeper import
This commit is contained in:
@@ -1584,7 +1584,7 @@
|
|||||||
if (value.length > 6) {
|
if (value.length > 6) {
|
||||||
// we have some custom fields.
|
// we have some custom fields.
|
||||||
for (i = 6; i < value.length; i = i + 2) {
|
for (i = 6; i < value.length; i = i + 2) {
|
||||||
if (value[i + 1].length > 200) {
|
if (value[i + 1] && value[i + 1].length > 200) {
|
||||||
if (!cipher.notes) {
|
if (!cipher.notes) {
|
||||||
cipher.notes = '';
|
cipher.notes = '';
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user