tangled
alpha
login
or
join now
moth11.net
/
88x31
0
fork
atom
tiny 88x31 lexicon for atproto
0
fork
atom
overview
issues
pulls
pipelines
reverse the nocursor condition
moth11.net
1 month ago
735402f4
287b8af6
+3
-1
1 changed file
expand all
collapse all
unified
split
db
lexicon.go
+3
-1
db/lexicon.go
···
105
105
for rows.Next() {
106
106
i = i + 1
107
107
if i == limit+1 {
108
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
116
+
}
117
117
+
if i != limit+1 {
118
118
+
postedAt = nil
117
119
}
118
120
return buttons, postedAt, nil
119
121
}