backend for xcvr appview
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

correct query to only return valid messages

rachel-mp4 7a37be71 2f9085d5

+1 -1
+1 -1
server/internal/db/db.go
··· 111 111 JOIN did_handles dh ON m.did = dh.did 112 112 LEFT JOIN profiles p ON m.did = p.did 113 113 JOIN did_handles issuer_dh ON s.issuer_did = issuer_dh.did 114 - WHERE s.channel_uri = $2 %s 114 + WHERE s.channel_uri = $2 AND dh.handle = s.author_handle %s 115 115 ORDER BY s.message_id DESC 116 116 LIMIT $1 117 117 `