Skip to content

Commit

Permalink
fixed a bug in importing entries
Browse files Browse the repository at this point in the history
  • Loading branch information
antelle committed Oct 4, 2019
1 parent 1af32ff commit 83f1e05
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 10 deletions.
6 changes: 3 additions & 3 deletions dist/kdbxweb.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/kdbxweb.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/kdbxweb.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions lib/format/kdbx.js
Expand Up @@ -307,8 +307,8 @@ Kdbx.prototype.importEntry = function(entry, group, file) {

group.entries.push(newEntry);

entry.parentGroup = group;
entry.times.update();
newEntry.parentGroup = group;
newEntry.times.update();

return newEntry;
};
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "kdbxweb",
"version": "1.5.4",
"version": "1.5.5",
"description": "Kdbx KeePass database reader for web",
"repository": {
"type": "git",
Expand Down
3 changes: 3 additions & 0 deletions release-notes.md
@@ -1,5 +1,8 @@
Release notes
-------------
##### v1.5.5 (2019-10-04)
`-` fixed another bug in importing entries

##### v1.5.4 (2019-10-04)
`-` fixed importing entries

Expand Down

0 comments on commit 83f1e05

Please sign in to comment.