shithub: hell

Download patch

ref: 70ed46bbc94c298e09c239ba90372dd55af23f0e
parent: 474b1fb7ef6db9d6edacb720a6521c953e903fce
author: penny <penny@limitedideas.org>
date: Fri Sep 26 17:12:40 EDT 2025

fiddle with notification newlines

--- a/notifications.go
+++ b/notifications.go
@@ -51,12 +51,12 @@
 	notifications = append(notifications, notification)
 
 	status := func(Notification *mastodon.Notification, plaintext string) {
-		notification := fmt.Sprintf("Notification [%s] from <%s>: %s\n\n", Notification.Type, Notification.Account.Acct, plaintext)
+		notification := fmt.Sprintf("Notification [%s] from <%s>: %s\n", Notification.Type, Notification.Account.Acct, plaintext)
 		fmt.Println(hyphenate(notification))
 	}
 
 	other := func(Notification *mastodon.Notification) {
-		notification := fmt.Sprintf("Notification [%s] from <%s>\n\n", Notification.Type, Notification.Account.Acct)
+		notification := fmt.Sprintf("Notification [%s] from <%s>\n", Notification.Type, Notification.Account.Acct)
 		fmt.Println(hyphenate(notification))
 	}
 
--