ref: 2bb041d629bf0fcabf35ec0b106d74dccb517b72
parent: 22c76389a787fb39769680882ef5961819429d05
author: penny <penny@limitedideas.org>
date: Sun Aug 10 20:47:57 EDT 2025
don't need to print about unpausing if we're updating the status line
--- a/hellclient.go
+++ b/hellclient.go
@@ -4,7 +4,6 @@
"io"
"strings"
"sync"
- "fmt"
"github.com/chzyer/readline"
"github.com/mattn/go-mastodon"
@@ -59,7 +58,6 @@
func (hc *Hellclient) printPauseBuffer() { if(!hc.isPaused) {- fmt.Println("Output resumed") for _, action := range hc.actionBuffer {action()
}
--
⑨