# HG changeset patch # User Kim Alvefur # Date 1484527245 -3600 # Node ID 7f9ff36dc8d531b14172250b9a125741b2f6eb12 # Parent b2a19866594601e0e40a80154be0f43e3d077ae4 mod_http_upload: Update for size limit error reporting change in XEP-0363 v0.2 (fixes #813) diff -r b2a198665946 -r 7f9ff36dc8d5 mod_http_upload/mod_http_upload.lua --- a/mod_http_upload/mod_http_upload.lua Thu Jan 12 10:13:58 2017 +0000 +++ b/mod_http_upload/mod_http_upload.lua Mon Jan 16 01:40:45 2017 +0100 @@ -79,7 +79,7 @@ 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-size"):text(tostring(file_size_limit)))); + :tag("max-file-size"):text(tostring(file_size_limit)))); return true; end local reply = st.reply(stanza);