We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a07abd2 commit b14cfe9Copy full SHA for b14cfe9
src/NTorSpectator.Observer/Mastodon/Reporter.cs
@@ -78,7 +78,7 @@ public async Task PublishReportData(Report report)
78
sb.AppendFormat("Observed {0} sites up and {1} sites down.\n",
79
report.Observations.Count(x => x.IsAvailable),
80
report.Observations.Count(x => !x.IsAvailable));
81
- sb.AppendFormat("Since previous report {0} sites came up, {1} gone down",
+ sb.AppendFormat("Since previous report {0} sites came up, {1} gone down\n#tor",
82
report.Events.Count(x => x.Kind == AvailabilityEvent.EventType.Up),
83
report.Events.Count(x => x.Kind == AvailabilityEvent.EventType.Down));
84
await _mastodonClient.Toot(new(sb.ToString()));
0 commit comments