shithub: hell

Download patch

ref: 9421bd129641dc122bc3d5dd9ee5a8b714ffcc9e
parent: 616c1ea077acf6a117643997ab6354ba0fcdc537
author: penny <penny@limitedideas.org>
date: Fri Sep 26 18:33:58 EDT 2025

only set thread getter loaded if we load it

--- a/pages.go
+++ b/pages.go
@@ -33,8 +33,10 @@
 	if getter.loaded {
 		return nil, nil
 	}
-	getter.loaded = true
 	context, err := getter.client.GetStatusContext(context.Background(), getter.target.ID)
+	if err == nil {
+		getter.loaded = true	
+	}
 	var statuses []*mastodon.Status
 	for _, post := range context.Descendants {
 		statuses = append(statuses, post)
--