streaming: reorder tag params

This commit is contained in:
Alex Gleason 2023-08-28 13:37:15 -05:00
parent e6d1494a10
commit e18aa878bb
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 1 deletions

View File

@ -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,