fix: follow graph / readonly login

This commit is contained in:
2024-05-01 10:34:28 +01:00
parent 778ce1a24f
commit 6398e470ef
11 changed files with 36 additions and 24 deletions

View File

@ -29,7 +29,7 @@ export class EventCacheWorker extends EventEmitter<CacheEvents> implements Cache
"REQ",
"events-search",
{
search: q
search: q,
},
]);
return results;

View File

@ -35,7 +35,7 @@ export class ProfileCacheRelayWorker extends EventEmitter<CacheEvents> implement
"profiles-search",
{
kinds: [0],
search: q
search: q,
},
]);
return removeUndefined(profiles.map(mapEventToProfile));

View File

@ -35,7 +35,7 @@ export class UserFollowsWorker extends EventEmitter<CacheEvents> implements Cach
"contacts-search",
{
kinds: [3],
search: q
search: q,
},
]);
return removeUndefined(results.map(mapEventToUserFollows));