Skip to content

Commit

Permalink
remove newline for multiple cert errors, just space in between now
Browse files Browse the repository at this point in the history
  • Loading branch information
velicuvlad committed Oct 22, 2024
1 parent 74f436e commit 274f65f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Replicator/Worker.cc
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ namespace litecore::repl {
uint32_t i = 0; // Collection index
for ( auto& c : collectionOpts ) {
if ( !firstline ) {
s << ",\n";
s << ", ";
} else {
firstline = false;
}
Expand All @@ -79,7 +79,7 @@ namespace litecore::repl {
writeRedacted(c.properties, s);
s << "}";
}
s << "}\n";
s << "} ";

s << "Options=";
writeRedacted(properties, s);
Expand Down

0 comments on commit 274f65f

Please sign in to comment.