diff options
author | Azul <azul@leap.se> | 2014-01-07 09:34:27 +0100 |
---|---|---|
committer | Azul <azul@leap.se> | 2014-01-07 09:34:27 +0100 |
commit | 74353fef4524e8418acf5dd854ff41d3a06beff0 (patch) | |
tree | 2d4930110bd656cad2b42e0198e372f20aab6697 | |
parent | 6b36baab9f82e022b09e6bdbe071860a8075badf (diff) |
only emit pgp keys if they are actually set
if doc.keys has not been set doc.keys[pgp] will raise an error.
We always upload the key after signup - but this might fail and there is some time in between. Not checking for this condition lead to errors in the couch logs.
-rw-r--r-- | users/app/models/identity.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/users/app/models/identity.rb b/users/app/models/identity.rb index cbb540e..9b97b51 100644 --- a/users/app/models/identity.rb +++ b/users/app/models/identity.rb @@ -24,7 +24,9 @@ class Identity < CouchRest::Model::Base if (doc.type != 'Identity') { return; } - emit(doc.address, doc.keys["pgp"]); + if (typeof doc.keys === "object") { + emit(doc.address, doc.keys["pgp"]); + } } EOJS view :disabled, |