fix: small bits

This commit is contained in:
nullishamy 2025-05-03 22:47:40 +01:00
parent ecb706e93f
commit f0e287c78d
Signed by: amy
SSH key fingerprint: SHA256:WmV0uk6WgAQvDJlM8Ld4mFPHZo02CLXXP5VkwQ5xtyk
3 changed files with 19 additions and 13 deletions

View file

@ -143,6 +143,7 @@ pub async fn statuses(
FROM post p
INNER JOIN user u on p.user_id = u.id
WHERE u.id = ?1
ORDER BY p.created_at DESC
"#, uid)
.fetch_all(&mut **db)
.await