From f04ada478f4bfa5637744876f00ff56f85dcf552 Mon Sep 17 00:00:00 2001 From: LLLL Colonq Date: Tue, 21 Jul 2026 00:14:25 -0400 Subject: Update --- src/wasp-event-handlers-binary.el | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/wasp-event-handlers-binary.el') diff --git a/src/wasp-event-handlers-binary.el b/src/wasp-event-handlers-binary.el index 22e67a04..0cf11111 100644 --- a/src/wasp-event-handlers-binary.el +++ b/src/wasp-event-handlers-binary.el @@ -13,12 +13,16 @@ (setf w/bus-binary-event-handlers (list + (cons "friend response" + (lambda (d) + (when-let* ((k (queue-dequeue w/friend-response-queue))) + (funcall k d)))) (cons "fig monitor twitch chat incoming" (lambda (d) (-let* ( ((users stags msg) (s-split-up-to " " (w/utf8 d) 2)) - ((user disp) (s-split-up-to "\t" users 2))) + ((disp user) (s-split-up-to "\t" users 2))) (w/twitch-handle-incoming-chat - user + user disp (--map (s-split "\t" it) (s-split "\n" stags)) msg)))) (cons "fig monitor twitch redeem incoming" -- cgit v1.3.1