tiny 88x31 lexicon for atproto

reverse the nocursor condition

+3 -1
+3 -1
db/lexicon.go
··· 105 105 for rows.Next() { 106 106 i = i + 1 107 107 if i == limit+1 { 108 - postedAt = nil 109 108 break 110 109 } 111 110 var btnView types.ButtonView ··· 114 113 return nil, nil, err 115 114 } 116 115 buttons = append(buttons, btnView) 116 + } 117 + if i != limit+1 { 118 + postedAt = nil 117 119 } 118 120 return buttons, postedAt, nil 119 121 }