[Glitch] Prevent "invalid access token" error when opening Mastodon while logged out
Port 807e1254e6f1e4d73941a94623d606159382245e to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
parent
56a9d62972
commit
5aaf5f2256
@ -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