From e18aa878bb894148bde1071a80be12747fc7d96e Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Mon, 28 Aug 2023 13:37:15 -0500 Subject: [PATCH] streaming: reorder tag params --- src/controllers/api/streaming.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/api/streaming.ts b/src/controllers/api/streaming.ts index 38573bd..294b5d1 100644 --- a/src/controllers/api/streaming.ts +++ b/src/controllers/api/streaming.ts @@ -92,7 +92,7 @@ async function topicToFilter( if (query.tag) return { kinds: [1], '#t': [query.tag] }; break; case 'hashtag:local': - if (query.tag) return { kinds: [1], local: true, '#t': [query.tag] }; + if (query.tag) return { kinds: [1], '#t': [query.tag], local: true }; break; case 'user': // HACK: this puts the user's entire contacts list into RAM,