Skip to content

Commit 3060bab

Browse files
authored
fix: app is not mark as ready in redux after deeplink auth (#6703)
1 parent 4711030 commit 3060bab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/sagas/deepLinking.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { all, call, delay, put, select, take, takeLatest } from 'redux-saga/effe
22

33
import { shareSetParams } from '../actions/share';
44
import * as types from '../actions/actionsTypes';
5-
import { appInit, appStart } from '../actions/app';
5+
import { appInit, appStart, appReady } from '../actions/app';
66
import { inviteLinksRequest, inviteLinksSetToken } from '../actions/inviteLinks';
77
import { loginRequest } from '../actions/login';
88
import { selectServerRequest, serverInitAdd } from '../actions/server';
@@ -206,6 +206,7 @@ const handleOpen = function* handleOpen({ params }) {
206206
yield take(types.SERVER.SELECT_SUCCESS);
207207
yield put(loginRequest({ resume: params.token }, true));
208208
yield take(types.LOGIN.SUCCESS);
209+
yield put(appReady({}));
209210
yield navigate({ params });
210211
} else {
211212
yield handleInviteLink({ params, requireLogin: true });

0 commit comments

Comments
 (0)