aboutsummaryrefslogtreecommitdiff
path: root/src/zen/zen.cpp
diff options
context:
space:
mode:
authorDan Engelbrecht <[email protected]>2023-08-01 08:51:18 +0200
committerGitHub <[email protected]>2023-08-01 08:51:18 +0200
commitd7419eb4901ec589a5dcec683b8dc052bd6d896e (patch)
treec1b52e427c380363315c64f350ba45ab7a9693ae /src/zen/zen.cpp
parentcatch exceptions when scheduling GC and when writing GC scheduling state (#339) (diff)
downloadarchived-zen-d7419eb4901ec589a5dcec683b8dc052bd6d896e.tar.xz
archived-zen-d7419eb4901ec589a5dcec683b8dc052bd6d896e.zip
add requested item in oplog remote op (#340)
* add more context for oplog import/export errors
Diffstat (limited to 'src/zen/zen.cpp')
-rw-r--r--src/zen/zen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zen/zen.cpp b/src/zen/zen.cpp
index a2ab31254..0dc86a50f 100644
--- a/src/zen/zen.cpp
+++ b/src/zen/zen.cpp
@@ -99,7 +99,7 @@ ZenCmdBase::FormatHttpResponse(const cpr::Response& Response)
zen::HttpContentType ContentType = zen::ParseContentType(It->second);
if (ContentType == zen::HttpContentType::kText)
{
- Content = fmt::format("'{}'", Response.text);
+ Content = Response.text;
}
else if (ContentType == zen::HttpContentType::kJSON)
{