Skip to content

Commit 5c3d5c3

Browse files
committed
fix app stuck on splash screen on hybrid app
1 parent 7509052 commit 5c3d5c3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Expensify.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ function Expensify() {
204204
Linking.getInitialURL().then((url) => {
205205
// We use custom deeplink handler in setup/hybridApp
206206
if (CONFIG.IS_HYBRID_APP) {
207+
Report.doneCheckingPublicRoom();
207208
return;
208209
}
209210
setInitialUrl(url);
@@ -214,7 +215,6 @@ function Expensify() {
214215
Linking.addEventListener('url', (state) => {
215216
// We use custom deeplink handler in setup/hybridApp
216217
if (CONFIG.IS_HYBRID_APP) {
217-
Report.doneCheckingPublicRoom();
218218
return;
219219
}
220220
Report.openReportFromDeepLink(state.url);

0 commit comments

Comments
 (0)