mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-31 17:57:43 +01:00
null ref on keeper import
This commit is contained in:
parent
2997f694f8
commit
f3b438d514
@ -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 = '';
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user