From ccffe3abeac6b4edf13b3317a2f50d08bf7425ea Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Wed, 20 Mar 2024 13:49:44 -0500 Subject: [PATCH] streaming.ts: remove unused import of getAuthor --- 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 7aa3a20..c864962 100644 --- a/src/controllers/api/streaming.ts +++ b/src/controllers/api/streaming.ts @@ -2,7 +2,7 @@ import { NostrFilter } from '@soapbox/nspec'; import { type AppController } from '@/app.ts'; import { Conf } from '@/config.ts'; import { Debug, z } from '@/deps.ts'; -import { getAuthor, getFeedPubkeys } from '@/queries.ts'; +import { getFeedPubkeys } from '@/queries.ts'; import { Sub } from '@/subs.ts'; import { bech32ToPubkey } from '@/utils.ts'; import { renderStatus } from '@/views/mastodon/statuses.ts';