ssb: Fix some SQL syntax for private messages. They need more work.
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 21m16s

This commit is contained in:
Cory McWilliams 2025-01-29 12:15:46 -05:00
parent 94d969fe46
commit 6c2fc1444d
2 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
{
"type": "tildefriends-app",
"emoji": "🦀",
"previous": "&Ph3a53rRidBNfYsfAtQKydoizUBCyh1Xl4I8XlzcQnk=.sha256"
"previous": "&m5ZrkzoyAjv7AY6AukzVoWIyUFUL97uuDDWCtxCloAU=.sha256"
}

View File

@ -150,9 +150,9 @@ class TfTabNewsFeedElement extends LitElement {
FROM messages
JOIN json_each(?1) AS following ON messages.author = following.value
WHERE
(?2 IS NULL OR (messages.timestamp >= ?2) AND messages.timestamp < ?3 AND
(?2 IS NULL OR (messages.timestamp >= ?2)) AND messages.timestamp < ?3 AND
json(messages.content) LIKE '"%'
ORDER BY sequence DESC LIMIT 20
ORDER BY messages.sequence DESC LIMIT 20
`,
[JSON.stringify(this.following), start_time, end_time]
);