refactor: don't use length for req id

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

View File

@ -44,9 +44,7 @@ export function useBadges(pubkey: string, leaveOpen = true) {
const acceptedSub = useMemo(() => {
if (rawBadges.length === 0) return null;
const rb = new RequestBuilder(
`accepted-badges:${pubkey.slice(0, 12)}:${rawBadges.length}`,
);
const rb = new RequestBuilder(`accepted-badges:${pubkey.slice(0, 12)}`);
rb.withFilter()
.kinds([EventKind.ProfileBadges])
.tag("d", ["profile_badges"])

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,
});

View File

@ -7,9 +7,10 @@ import { unixNow } from "@snort/shared";
import { LIVE_STREAM } from "const";
import { System, StreamState } from "index";
import { findTag } from "utils";
import { WEEK } from "const";
export function useStreamsFeed(tag?: string) {
const since = useMemo(() => unixNow() - 86400, [tag]);
const since = useMemo(() => unixNow() - WEEK, [tag]);
const rb = useMemo(() => {
const rb = new RequestBuilder(tag ? `streams:${tag}` : "streams");
rb.withOptions({