From 2a7d5eab16cc97adece7707ce9e52821b6291ecb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrej=20Rama=C5=A1euski?= <andrej@x2.cz> Date: Mon, 3 Jan 2022 20:26:32 +0100 Subject: [PATCH] Bugfix --- .gitlab-ci.yml | 2 +- lib/CF/Controller/Websockets.pm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 71a4dc4..f6482c0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,7 @@ image: docker:20.10.9 variables: DOCKER_TLS_CERTDIR: "/certs" - IMAGE_VER: 2.5.2 + IMAGE_VER: 2.5.3 services: - docker:20.10.9-dind diff --git a/lib/CF/Controller/Websockets.pm b/lib/CF/Controller/Websockets.pm index fe3aed4..9ab7657 100644 --- a/lib/CF/Controller/Websockets.pm +++ b/lib/CF/Controller/Websockets.pm @@ -25,7 +25,7 @@ sub main { $c->redis->pubsub->listen( notify => sub($pubsub, $payload) { - $c->send(encode("UTF-8", $payload); + $c->send(encode("UTF-8", $payload)); } ); -- GitLab