# HG changeset patch # User Matthew Wild # Date 1369222855 -3600 # Node ID 28e3257d2ae575e8c854eb3f4ffeb06b13762b16 # Parent 9f7c97e55593a1237b2b502f3299d5ae58bb55b3 mod_pastebin: Ensure base URL always has a trailing / (thanks Masin) diff -r 9f7c97e55593 -r 28e3257d2ae5 mod_pastebin/mod_pastebin.lua --- a/mod_pastebin/mod_pastebin.lua Sun May 19 22:25:54 2013 +0100 +++ b/mod_pastebin/mod_pastebin.lua Wed May 22 12:40:55 2013 +0100 @@ -30,7 +30,7 @@ local max_summary_length = module:get_option_number("pastebin_summary_length", 150); local html_preview = module:get_option_boolean("pastebin_html_preview", true); -local base_url = module:get_option_string("pastebin_url", module:http_url()); +local base_url = module:get_option_string("pastebin_url", module:http_url()):gsub("/$", "").."/"; -- Seconds a paste should live for in seconds (config is in hours), default 24 hours local expire_after = math.floor(module:get_option_number("pastebin_expire_after", 24) * 3600);