Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

Commit

Permalink
fix: fix sign out is not working properly (#1780)
Browse files Browse the repository at this point in the history
  • Loading branch information
saeedbashir committed Jul 31, 2023
1 parent 43422e2 commit 6115e0e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Source/OEXRouter.m
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,11 @@ - (void)presentViewController:(UIViewController*)controller fromController:(UIVi
}

- (void)showLoggedOutScreen {
[self showLoginScreenFromController:nil completion:nil];
__block OEXRouter *blockSelf = self;
[self showLoginScreenFromController:nil completion:^{
[blockSelf showSplash];
blockSelf.logistrationCompletion = nil;
}];

}

Expand Down

0 comments on commit 6115e0e

Please sign in to comment.