Fix post error: 'title: must be at least 5 characters'

This commit is contained in:
ekzyis 2024-03-17 21:26:59 +01:00
parent 45d0376889
commit bf95fba2dc
1 changed files with 1 additions and 1 deletions

2
sn.go
View File

@ -20,7 +20,7 @@ func CurateContentForStackerNews() (*[]Story, error) {
SELECT t.id, time, title, url, author, score, ndescendants
FROM (
SELECT id, MAX(created_at) AS created_at FROM hn_items
WHERE rank = 1 AND id NOT IN (SELECT hn_id FROM sn_items)
WHERE rank = 1 AND id NOT IN (SELECT hn_id FROM sn_items) AND length(title) >= 5
GROUP BY id
) t JOIN hn_items ON t.id = hn_items.id AND t.created_at = hn_items.created_at;
`); err != nil {