diff options
| author | Dan Engelbrecht <[email protected]> | 2023-08-01 08:51:18 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-08-01 08:51:18 +0200 |
| commit | d7419eb4901ec589a5dcec683b8dc052bd6d896e (patch) | |
| tree | c1b52e427c380363315c64f350ba45ab7a9693ae /src/zen/zen.cpp | |
| parent | catch exceptions when scheduling GC and when writing GC scheduling state (#339) (diff) | |
| download | archived-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.cpp | 2 |
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) { |