Skip to content
This repository was archived by the owner on Nov 30, 2022. It is now read-only.

Commit 5920790

Browse files
fix(back-button): fix android backbutton blurring out of window when goBack
1 parent ea24c1e commit 5920790

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/core/src/lib/back-button/routing-state.service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export class FivRoutingStateService {
4343
}
4444

4545
handleAndroidBackButton() {
46-
this.platform.backButton.subscribeWithPriority(9999, () => {
46+
this.platform.backButton.subscribe(() => {
4747
if (this.getHistory().length <= 1) {
4848
// close the app because we are at root level
4949
navigator['app'].exitApp();

0 commit comments

Comments
 (0)