diff options
author | Kuwa Lee <kuwalee1069@gmail.com> | 2024-06-15 19:00:34 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-15 19:00:34 +0800 |
commit | 01f505d09f35b642c5ea9206f10e1ff68f4eb0d5 (patch) | |
tree | 0489ad6af184fbe086a2376023f2cdaea358f8eb /src/state/cache/profile-shadow.ts | |
parent | b80594a554d91639eda70d311fcbc88c16c191a7 (diff) | |
parent | eaef1446f2236cc4c8993e4c57d5bcc5bb2263d9 (diff) | |
download | voidsky-01f505d09f35b642c5ea9206f10e1ff68f4eb0d5.tar.zst |
Merge branch 'bluesky-social:main' into zh
Diffstat (limited to 'src/state/cache/profile-shadow.ts')
-rw-r--r-- | src/state/cache/profile-shadow.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/state/cache/profile-shadow.ts b/src/state/cache/profile-shadow.ts index 0a618ab3b..dc907664e 100644 --- a/src/state/cache/profile-shadow.ts +++ b/src/state/cache/profile-shadow.ts @@ -5,6 +5,7 @@ import EventEmitter from 'eventemitter3' import {batchedUpdates} from '#/lib/batchedUpdates' import {findAllProfilesInQueryData as findAllProfilesInActorSearchQueryData} from '../queries/actor-search' +import {findAllProfilesInQueryData as findAllProfilesInKnownFollowersQueryData} from '../queries/known-followers' import {findAllProfilesInQueryData as findAllProfilesInListMembersQueryData} from '../queries/list-members' import {findAllProfilesInQueryData as findAllProfilesInListConvosQueryData} from '../queries/messages/list-converations' import {findAllProfilesInQueryData as findAllProfilesInMyBlockedAccountsQueryData} from '../queries/my-blocked-accounts' @@ -111,4 +112,5 @@ function* findProfilesInCache( yield* findAllProfilesInListConvosQueryData(queryClient, did) yield* findAllProfilesInFeedsQueryData(queryClient, did) yield* findAllProfilesInPostThreadQueryData(queryClient, did) + yield* findAllProfilesInKnownFollowersQueryData(queryClient, did) } |