Don't keep cached identities query

Otherwise when relogging as a different user you'll get their
defaultActor

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2019-09-26 18:01:38 +02:00
parent 4d4fdaaffe
commit e954188c34
No known key found for this signature in database
GPG key ID: A061B9DDE0CA0773

View file

@ -47,6 +47,7 @@ export async function initializeCurrentActor(apollo: ApolloClient<any>) {
const result = await apollo.query({
query: IDENTITIES,
fetchPolicy: 'network-only',
});
const identities = result.data.identities;
if (identities.length < 1) return;