From c84faeaa7299c8ea9de6752db9eb2001febffea3 Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Thu, 28 Jan 2021 15:45:23 +0100 Subject: [PATCH] :bug: Fixes change language --- frontend/src/app/main/repo.cljs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/main/repo.cljs b/frontend/src/app/main/repo.cljs index 83c114e04..d6effae0e 100644 --- a/frontend/src/app/main/repo.cljs +++ b/frontend/src/app/main/repo.cljs @@ -18,7 +18,8 @@ [{:keys [status body] :as response}] (cond (= 204 status) - (rx/empty) + ;; We need to send "something" so the streams listening downstream can act + (rx/of :empty) (= 502 status) (rx/throw {:type :bad-gateway})