mod_http_file_share: Add missing semicolon
authorKim Alvefur <zash@zash.se>
Sun, 31 Jan 2021 14:41:56 +0100
changeset 11349 0fec04b64a49
parent 11348 f06afb410a9f
child 11350 315faec1a920
mod_http_file_share: Add missing semicolon Last comma or semicolon isn't required but makes the diffs nicer once you add another item after it.
plugins/mod_http_file_share.lua
--- a/plugins/mod_http_file_share.lua	Sat Jan 30 20:23:52 2021 +0100
+++ b/plugins/mod_http_file_share.lua	Sun Jan 31 14:41:56 2021 +0100
@@ -54,7 +54,7 @@
 	filesize = { type = "modify"; condition = "not-acceptable"; text = "File too large";
 		extra = {tag = st.stanza("file-too-large", {xmlns = namespace}):tag("max-file-size"):text(tostring(file_size_limit)) };
 	};
-	filesizefmt = { type = "modify"; condition = "bad-request"; text = "File size must be positive integer"; }
+	filesizefmt = { type = "modify"; condition = "bad-request"; text = "File size must be positive integer"; };
 });
 
 local upload_cache = cache.new(1024);