From 890089f73cac5d58573d7d7e3981b5c8a3c0e167 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Mon, 1 Feb 2021 00:04:08 +0100 Subject: websocket-send: Use local `client` variable instead of global Must have copy-pasted that s-expression from elsewhere in the file. --- l/src/main.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'l/src/main.lisp') diff --git a/l/src/main.lisp b/l/src/main.lisp index 7ad0611..d1336d7 100644 --- a/l/src/main.lisp +++ b/l/src/main.lisp @@ -97,5 +97,5 @@ (filter #'extensionp targets))) (defun websocket-send (client data) - (wsd:send *client* data) + (wsd:send client data) (wait-group:add *wg*)) -- cgit v1.2.3