[Glitch] Prevent "invalid access token" error when opening Mastodon while logged out

Port 807e1254e6 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
diondiondion
2025-12-15 16:24:03 +01:00
committed by Claire
parent 56a9d62972
commit 5aaf5f2256

View File

@@ -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());