Skip to content

Commit 0fab22d

Browse files
committed
One more commit to up version
1 parent ebe3258 commit 0fab22d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

NTorSpectator/Mastodon/Reporter.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ public async Task PublishReport(IReadOnlyCollection<TorWatchResults> watchResult
2828
{
2929
sb.AppendFormat("\u26a0\ufe0f Requested {0} sites", watchResults.Count)
3030
.AppendLine()
31-
.AppendFormat("\u2705 Alive: {0}", watchResults.Count(x => x.IsOk))
31+
.AppendFormat(" \u2705 Alive: {0}", watchResults.Count(x => x.IsOk))
3232
.AppendLine()
33-
.AppendFormat("\u274c Down: {0}", watchResults.Count(x => !x.IsOk));
33+
.AppendFormat(" \u274c Down: {0}", watchResults.Count(x => !x.IsOk));
3434

3535
sb.AppendLine().AppendLine();
3636
foreach (var failResult in watchResults.Where(x => !x.IsOk))
3737
{
38-
sb.AppendFormat("\U0001F4A5 {0} not found", failResult.Site).AppendLine();
38+
sb.AppendFormat(" - \U0001F4A5 {0} not found", failResult.Site).AppendLine();
3939
}
4040
}
4141
await _mastodonClient.Toot(new(sb.ToString()));

0 commit comments

Comments
 (0)