mod_http_upload: Correctly attach extended error information
authorKim Alvefur <zash@zash.se>
Mon, 16 Jan 2017 01:45:05 +0100
changeset 2449 e822900c87d4
parent 2448 3e9f9cef9c0e
child 2450 c563f4d64302
mod_http_upload: Correctly attach extended error information
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);