shithub: hell

Download patch

ref: a1bbf268d91af2fe34cc8e247f0e617ba102c578
parent: b334f75a98d99e9d369e9d5e6a0036a2ac0284bd
author: penny <penny@limitedideas.org>
date: Tue Oct 21 16:11:13 EDT 2025

gofmt pass

--- a/main.go
+++ b/main.go
@@ -599,10 +599,23 @@
 					fmt.Printf("Error unfiltering post: %v\n", err)
 					return
 				}
-				line, _ := templater.render("Unfiltered: %s> $username $content $media_descriptions\n")
+				line, _ := templater.render("Unfiltered: %s> $standard_or_subject\n")
 				fmt.Print(line)
-
 				return
+			case "block":
+				blockfunc := func() {
+						var account *mastodon.Account
+					if foundindex || index == "" {
+					account = &postItem.Account
+					} else {
+						account = hc.resolveAccount(index)
+						if account == nil {
+						return
+					}
+				}
+				}
+			case "unblock:
+			
 			}
 
 			//Posts that need an index and an argument
--