fix(remote): print label separators correctly (#7535)

This commit is contained in:
Yat Ho
2025-05-07 05:09:29 +08:00
committed by GitHub
parent adea0e2a07
commit f0c8fd689a
+1 -1
View File
@@ -941,7 +941,7 @@ void print_details(tr_variant::Map const& map)
{
if (auto sv = it->value_if<std::string_view>(); sv)
{
fmt::print("{:s}{:s}", it == begin ? ", " : "", *sv);
fmt::print("{:s}{:s}", it != begin ? ", " : "", *sv);
}
}