File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,14 @@ public async Task PublishReport(IReadOnlyCollection<TorWatchResults> watchResult
28
28
{
29
29
sb . AppendFormat ( "\u26a0 \ufe0f Requested {0} sites" , watchResults . Count )
30
30
. AppendLine ( )
31
- . AppendFormat ( "\u2705 Alive: {0}" , watchResults . Count ( x => x . IsOk ) )
31
+ . AppendFormat ( " \u2705 Alive: {0}" , watchResults . Count ( x => x . IsOk ) )
32
32
. AppendLine ( )
33
- . AppendFormat ( "\u274c Down: {0}" , watchResults . Count ( x => ! x . IsOk ) ) ;
33
+ . AppendFormat ( " \u274c Down: {0}" , watchResults . Count ( x => ! x . IsOk ) ) ;
34
34
35
35
sb . AppendLine ( ) . AppendLine ( ) ;
36
36
foreach ( var failResult in watchResults . Where ( x => ! x . IsOk ) )
37
37
{
38
- sb . AppendFormat ( "\U0001F4A5 {0} not found" , failResult . Site ) . AppendLine ( ) ;
38
+ sb . AppendFormat ( " - \U0001F4A5 {0} not found" , failResult . Site ) . AppendLine ( ) ;
39
39
}
40
40
}
41
41
await _mastodonClient . Toot ( new ( sb . ToString ( ) ) ) ;
You can’t perform that action at this time.
0 commit comments