Skip to content

Commit

Permalink
fix(TripMonitorNotification): add new line after resolved alerts
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianaCeric committed Nov 28, 2023
1 parent 6646029 commit 77c15ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ private static String bodyFromAlerts(
// If there are any resolved alerts, include list of these.
if (resolvedAlerts.size() > 0) {
if (body.length() > 0) body.append("\n");
body.append("Resolved alerts:");
body.append("Resolved alerts:\n");
body.append(listFromAlerts(resolvedAlerts, true));
}
return body.toString();
Expand Down

0 comments on commit 77c15ca

Please sign in to comment.