From f3441b583a678fb7cb476d0c7ed9bfe31716dfb4 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Sat, 21 Sep 2024 12:19:48 -0400 Subject: [PATCH] xo-websock: bugfix: track quoted->quot --- src/websock/WebsocketSink.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/websock/WebsocketSink.cpp b/src/websock/WebsocketSink.cpp index 1c406432..07dded1b 100644 --- a/src/websock/WebsocketSink.cpp +++ b/src/websock/WebsocketSink.cpp @@ -18,7 +18,7 @@ namespace xo { using xo::reflect::TypeDescr; using xo::ref::rp; using xo::ref::brw; - using xo::print::quoted; + using xo::print::quot; using xo::print::qcstr; using xo::scope; using xo::xtag; @@ -104,7 +104,7 @@ namespace xo { std::stringstream ss; /* format message envelope */ - ss << "{" << qcstr("stream") << ": " << quoted(this->stream_name_) + ss << "{" << qcstr("stream") << ": " << quot(this->stream_name_) << ", " << qcstr("event") << ": "; /* format event as json */