# HG changeset patch # User Kim Alvefur # Date 1612100516 -3600 # Node ID 0fec04b64a4910496b2769315ad368ec737a78d0 # Parent f06afb410a9f9eadcf58fad6ff4d8d2462cc97e9 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. diff -r f06afb410a9f -r 0fec04b64a49 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);