# HG changeset patch # User Kim Alvefur # Date 1484527505 -3600 # Node ID e822900c87d426563ec54c65c3b57746cbfa7a59 # Parent 3e9f9cef9c0e63889d05398f5cdc841633061779 mod_http_upload: Correctly attach extended error information diff -r 3e9f9cef9c0e -r e822900c87d4 mod_http_upload/mod_http_upload.lua --- a/mod_http_upload/mod_http_upload.lua Mon Jan 16 01:44:38 2017 +0100 +++ b/mod_http_upload/mod_http_upload.lua Mon Jan 16 01:45:05 2017 +0100 @@ -77,9 +77,9 @@ return true; elseif filesize > file_size_limit then module:log("debug", "File too large (%d > %d)", filesize, file_size_limit); - origin.send(st.error_reply(stanza, "modify", "not-acceptable", "File too large", - st.stanza("file-too-large", {xmlns=xmlns_http_upload}) - :tag("max-file-size"):text(tostring(file_size_limit)))); + origin.send(st.error_reply(stanza, "modify", "not-acceptable", "File too large") + :tag("file-too-large", {xmlns=xmlns_http_upload}) + :tag("max-file-size"):text(tostring(file_size_limit))); return true; end local reply = st.reply(stanza);