# HG changeset patch # User Kim Alvefur # Date 1529764846 -7200 # Node ID 11087a72990b188cc09f57687e6afee9c9426795 # Parent 03cda95ae97a967267fe003b782671a9ee545c8e mod_pastebin: Remove reference to removed header table diff -r 03cda95ae97a -r 11087a72990b mod_pastebin/mod_pastebin.lua --- a/mod_pastebin/mod_pastebin.lua Sat Jun 23 16:37:15 2018 +0200 +++ b/mod_pastebin/mod_pastebin.lua Sat Jun 23 16:40:46 2018 +0200 @@ -57,7 +57,7 @@ function pastebin_text(text) local uuid = uuid_new(); - pastes[uuid] = { body = text, time = os_time(), headers = default_headers }; + pastes[uuid] = { body = text, time = os_time(), }; pastes[#pastes+1] = uuid; if not pastes[2] then -- No other pastes, give the timer a kick add_task(expire_after, expire_pastes);