Skip to content

Commit

Permalink
Modify prepareId function to support escaping the semi-colon (;) whic…
Browse files Browse the repository at this point in the history
…h currently fails.
  • Loading branch information
gmcelhanon committed Jan 10, 2018
1 parent e2dc053 commit 0e54924
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chromeipass/chromeipass.js
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,7 @@ cipFields.setUniqueId = function(field) {
}

cipFields.prepareId = function(id) {
return id.replace(/[:#.,\[\]\(\)' "]/g, function(m) {
return id.replace(/[:#.,;\[\]\(\)' "]/g, function(m) {
return "\\"+m
});
}
Expand Down

0 comments on commit 0e54924

Please sign in to comment.