Prevent "invalid access token" error when opening Mastodon while logged out (#37256)
This commit is contained in:
parent
9d18df4f8a
commit
807e1254e6
@ -62,7 +62,8 @@ export const checkAnnualReport = createAppThunk(
|
||||
`${annualReportSlice.name}/checkAnnualReport`,
|
||||
(_arg: unknown, { dispatch, getState }) => {
|
||||
const year = selectWrapstodonYear(getState());
|
||||
if (!year) {
|
||||
const me = getState().meta.get('me') as string;
|
||||
if (!year || !me) {
|
||||
return;
|
||||
}
|
||||
void dispatch(fetchReportState());
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user