aboutsummaryrefslogtreecommitdiffstats
path: root/util/error.lua
diff options
context:
space:
mode:
Diffstat (limited to 'util/error.lua')
-rw-r--r--util/error.lua9
1 files changed, 7 insertions, 2 deletions
diff --git a/util/error.lua b/util/error.lua
index fd6deb80..44eb59a2 100644
--- a/util/error.lua
+++ b/util/error.lua
@@ -98,12 +98,17 @@ local function from_stanza(stanza, context, source)
context.stanza = stanza;
context.by = error_tag.attr.by or stanza.attr.from;
+ local uri;
+ if condition == "gone" or condition == "redirect" then
+ uri = error_tag:get_child_text(condition, "urn:ietf:params:xml:ns:xmpp-stanzas");
+ end
+
return new({
type = error_type or "cancel";
condition = condition or "undefined-condition";
text = text;
- extra = (extra_tag or condition == "gone") and {
- uri = error_tag:get_child_text("gone", "urn:ietf:params:xml:ns:xmpp-stanzas");
+ extra = (extra_tag or uri) and {
+ uri = uri;
tag = extra_tag;
} or nil;
}, context, nil, source);