From e3e606f7d245a43ea2f21514455cd4fc856500e3 Mon Sep 17 00:00:00 2001 From: Gregor Jasny Date: Thu, 28 Dec 2023 22:55:19 +0100 Subject: [PATCH] fixup! fix(push): encode push labels --- push/src/gateway.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/push/src/gateway.cc b/push/src/gateway.cc index 6b3bc683..882ce949 100644 --- a/push/src/gateway.cc +++ b/push/src/gateway.cc @@ -53,7 +53,7 @@ void Gateway::RegisterCollectable(const std::weak_ptr& collectable, if (labels) { for (auto& label : *labels) { - ss << "/" << label.first << "/" << label.second; + detail::encodeLabel(ss, label); } }