From e3867b8fbe2966939a53f397d150dcac1970dac5 Mon Sep 17 00:00:00 2001 From: phil Date: Thu, 17 Jul 2025 15:17:41 +0000 Subject: [PATCH] include empty subs --- server/db.js | 2 +- 1 file(s) changed, 1 insertion(s)(+), 1 deletion(s)(-) diff --git a/server/db.js b/server/db.js --- a/server/db.js +++ b/server/db.js @@ -136,7 +136,7 @@ sum(p.total_pushes) as 'total_pushes', unixepoch(max(p.last_push)) * 1000 as 'last_push' from accounts - join push_subs p on (p.account_did = did) + left outer join push_subs p on (p.account_did = did) where secret_password = ? group by did order by first_seen desc`); -- tangled.sh