mod_pastebin/mod_pastebin.lua
changeset 1017 28e3257d2ae5
parent 934 15e2c4fd26a0
child 1343 7dbde05b48a9
--- 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);