Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

Commit

Permalink
null ref on keeper import
Browse files Browse the repository at this point in the history
  • Loading branch information
kspearrin committed Dec 4, 2017
1 parent 2997f69 commit f3b438d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/services/importService.js
Original file line number Diff line number Diff line change
Expand Up @@ -1584,7 +1584,7 @@
if (value.length > 6) {
// we have some custom fields.
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) {
cipher.notes = '';
}
Expand Down

0 comments on commit f3b438d

Please sign in to comment.