From f0c8fd689aed98275c3c2ef5bd200271c8dd7204 Mon Sep 17 00:00:00 2001 From: Yat Ho Date: Wed, 7 May 2025 05:09:29 +0800 Subject: [PATCH] fix(remote): print label separators correctly (#7535) --- utils/remote.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/remote.cc b/utils/remote.cc index 344ee35e6..5751acad2 100644 --- a/utils/remote.cc +++ b/utils/remote.cc @@ -941,7 +941,7 @@ void print_details(tr_variant::Map const& map) { if (auto sv = it->value_if(); sv) { - fmt::print("{:s}{:s}", it == begin ? ", " : "", *sv); + fmt::print("{:s}{:s}", it != begin ? ", " : "", *sv); } }