refactor: don't use length for req id

This commit is contained in:
2023-08-01 08:15:41 +02:00
parent f273f1d8b4
commit 1d0c2e8980
3 changed files with 4 additions and 7 deletions

View File

@ -42,9 +42,7 @@ export function useLiveChatFeed(link: NostrLink, eZaps?: Array<string>) {
const esub = useMemo(() => {
if (etags.length === 0) return null;
const rb = new RequestBuilder(
`reactions:${link.id}:${link.author}:${etags.length}`,
);
const rb = new RequestBuilder(`reactions:${link.id}:${link.author}`);
rb.withOptions({
leaveOpen: true,
});