-rw-r--r-- | lib/openid_message.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/openid_message.cc b/lib/openid_message.cc index 588bd62..75e59b3 100644 --- a/lib/openid_message.cc +++ b/lib/openid_message.cc | |||
@@ -215,5 +215,7 @@ namespace opkele { | |||
215 | string basic_openid_message::find_ns(const string& uri,const char *pfx) const { | 215 | string basic_openid_message::find_ns(const string& uri,const char *pfx) const { |
216 | if(has_field("ns")) | 216 | try { |
217 | return get_ns(uri); | 217 | return get_ns(uri); |
218 | return pfx; | 218 | }catch(failed_lookup&) { |
219 | return pfx; | ||
220 | } | ||
219 | } | 221 | } |