aboutsummaryrefslogtreecommitdiff
path: root/src/zen/zen.cpp
diff options
context:
space:
mode:
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)
{