shithub: hell

Download patch

ref: 2ff9e76ea123024336224e5785ddb17ed31090aa
parent: deca7cb9a06428b469994384c614ea992e776e24
author: penny <penny@limitedideas.org>
date: Sun Sep 28 20:09:20 EDT 2025

redundant check

--- a/pages.go
+++ b/pages.go
@@ -213,10 +213,6 @@
 				page.indexend = newend
 				return
 			}
-			if !bumped && len((*page.itembuffer)[page.indexend:]) > 0 {
-				page.indexend = newend
-				return
-			}
 			//If we didn't bump and there's no posts left, check for more
 			if !bumped && len((*page.itembuffer)[page.indexend:]) == 0 {
 				page.Buffer()
--