Fix broken ReportingEndpointGroupKey::ToString
Change-Id: I864544d5c8def820498de3919e418f0f6f798a3d Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3256068 Reviewed-by: Ian Clelland <iclelland@chromium.org> Reviewed-by: Matt Menke <mmenke@chromium.org> Commit-Queue: Rodney Ding <rodneyding@google.com> Cr-Commit-Position: refs/heads/main@{#937874}
This commit is contained in:

committed by
Chromium LUCI CQ

parent
3b602ca704
commit
261070cbbf
@ -88,7 +88,7 @@ bool operator>(const ReportingEndpointGroupKey& lhs,
|
||||
|
||||
std::string ReportingEndpointGroupKey::ToString() const {
|
||||
return "Source: " +
|
||||
(reporting_source ? "null" : reporting_source->ToString()) +
|
||||
(reporting_source ? reporting_source->ToString() : "null") +
|
||||
"; NIK: " + network_isolation_key.ToDebugString() +
|
||||
"; Origin: " + origin.Serialize() + "; Group name: " + group_name;
|
||||
}
|
||||
|
Reference in New Issue
Block a user