tangled
alpha
login
or
join now
edavis.dev
/
bsky-feeds
1
fork
atom
this repo has no description
1
fork
atom
overview
issues
pulls
pipelines
fix: space between DESC and LIMIT
Eric Davis
1 year ago
2ca7f877
1797150d
+1
-1
1 changed file
expand all
collapse all
unified
split
pkg
mostliked
generator.go
+1
-1
pkg/mostliked/generator.go
···
38
38
fmt.Fprint(&query, " AND likes <= ? ")
39
39
queryParams = append(queryParams, params.Cursor)
40
40
}
41
41
-
fmt.Fprint(&query, "ORDER BY likes DESC, create_ts DESC")
41
41
+
fmt.Fprint(&query, "ORDER BY likes DESC, create_ts DESC ")
42
42
fmt.Fprint(&query, "LIMIT ?")
43
43
queryParams = append(queryParams, params.Limit+1)
44
44