Fix initial authenticated: false bug

This commit is contained in:
Lim Chee Aun 2023-11-01 17:02:52 +08:00
parent e6ef2f9064
commit 0cc956b8c0

View file

@ -221,10 +221,37 @@ export function api({ instance, accessToken, accountID, account } = {}) {
} }
} }
const currentAccount = getCurrentAccount();
// If only instance is provided, get the masto instance for that instance // If only instance is provided, get the masto instance for that instance
if (instance) { if (instance) {
if (currentAccountApi?.instance === instance) {
return {
masto: currentAccountApi.masto,
streaming: currentAccountApi.streaming,
client: currentAccountApi,
authenticated: true,
instance,
};
}
if (currentAccount?.instanceURL === instance) {
const { accessToken } = currentAccount;
currentAccountApi =
accountApis[instance]?.[accessToken] ||
initClient({ instance, accessToken });
return {
masto: currentAccountApi.masto,
streaming: currentAccountApi.streaming,
client: currentAccountApi,
authenticated: true,
instance,
};
}
const client = apis[instance] || initClient({ instance }); const client = apis[instance] || initClient({ instance });
const { masto, streaming, accessToken } = client; const { masto, streaming, accessToken } = client;
console.log('XX', instance, accessToken);
return { return {
masto, masto,
streaming, streaming,
@ -244,7 +271,6 @@ export function api({ instance, accessToken, accountID, account } = {}) {
instance: currentAccountApi.instance, instance: currentAccountApi.instance,
}; };
} }
const currentAccount = getCurrentAccount();
if (currentAccount) { if (currentAccount) {
const { accessToken, instanceURL: instance } = currentAccount; const { accessToken, instanceURL: instance } = currentAccount;
currentAccountApi = currentAccountApi =
@ -263,6 +289,7 @@ export function api({ instance, accessToken, accountID, account } = {}) {
const client = const client =
apis[DEFAULT_INSTANCE] || initClient({ instance: DEFAULT_INSTANCE }); apis[DEFAULT_INSTANCE] || initClient({ instance: DEFAULT_INSTANCE });
const { masto, streaming } = client; const { masto, streaming } = client;
console.log('XX', { DEFAULT_INSTANCE });
return { return {
masto, masto,
streaming, streaming,