You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 9, 2025. It is now read-only.
nostros_notes.*, nostros_users.lnurl, nostros_users.name, nostros_users.picture, nostros_users.contact FROM nostros_notes
25
+
nostros_notes.*, nostros_users.lnurl, nostros_users.name, nostros_users.picture, nostros_users.contact, nostros_users.created_at as user_created_at FROM nostros_notes
25
26
LEFT JOIN
26
27
nostros_users ON nostros_users.id = nostros_notes.pubkey
27
28
WHERE (nostros_users.contact = 1 OR nostros_notes.pubkey = '${pubKey}')
@@ -44,7 +45,7 @@ export const getMentionNotes: (
44
45
)=>Promise<Note[]>=async(db,pubKey,limit)=>{
45
46
constnotesQuery=`
46
47
SELECT
47
-
nostros_notes.*, nostros_users.lnurl, nostros_users.name, nostros_users.picture, nostros_users.contact FROM nostros_notes
48
+
nostros_notes.*, nostros_users.lnurl, nostros_users.name, nostros_users.picture, nostros_users.contact, nostros_users.created_at as user_created_at FROM nostros_notes
48
49
LEFT JOIN
49
50
nostros_users ON nostros_users.id = nostros_notes.pubkey
nostros_notes.*, nostros_users.lnurl, nostros_users.name, nostros_users.picture, nostros_users.contact FROM nostros_notes
117
+
nostros_notes.*, nostros_users.lnurl, nostros_users.name, nostros_users.picture, nostros_users.contact, nostros_users.created_at as user_created_at FROM nostros_notes
93
118
LEFT JOIN
94
119
nostros_users ON nostros_users.id = nostros_notes.pubkey
0 commit comments