clients.lua: Fix for mark_active()

Mon, 04 Jan 2016 14:34:00 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Mon, 04 Jan 2016 14:34:00 +0000
changeset 13
c245afa537bb
parent 12
ca858d8d8e9d
child 14
1d28dfcd9c94

clients.lua: Fix for mark_active()

clients.lua file | annotate | diff | comparison | revisions
--- a/clients.lua	Mon Jan 04 13:48:27 2016 +0000
+++ b/clients.lua	Mon Jan 04 14:34:00 2016 +0000
@@ -92,7 +92,7 @@
 end
 
 local function mark_active(request)
-	local cookie = event.request.headers.cookie;
+	local cookie = request.headers.cookie;
 	if not cookie then
 		log("warn", "Active client with no cookie");
 		return;

mercurial