ref: 681e9144ffd0e21b04ed640c1ceb30849dd4a9bf
parent: 828bcd2ad50d3c5a696bc038a5020189135168ad
author: penny <penny@limitedideas.org>
date: Wed Sep 24 20:19:35 EDT 2025
there's another
--- a/notifications.go
+++ b/notifications.go
@@ -52,12 +52,12 @@
status := func(Notification *mastodon.Notification, plaintext string) { notification := fmt.Sprintf("Notification [%s] from <%s>: %s\n\n", Notification.Type, Notification.Account.Acct, plaintext)- fmt.Printf(hyphenate(notification))
+ fmt.Println(hyphenate(notification))
}
other := func(Notification *mastodon.Notification) { notification := fmt.Sprintf("Notification [%s] from <%s>\n\n", Notification.Type, Notification.Account.Acct)- fmt.Printf(hyphenate(notification))
+ fmt.Println(hyphenate(notification))
}
hc.PrintNotificationsCustom(notifications, status, other)
--
⑨