Skip to content

Commit 19c0c1b

Browse files
committed
fix webview dialog not dismissed on android
1 parent 2786042 commit 19c0c1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

android/src/main/java/io/fullstack/oauth/OAuthManagerFragmentController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public void run() {
126126
(OAuthManagerDialogFragment) fragmentManager.findFragmentByTag(TAG);
127127

128128
if (frag != null) {
129-
//frag.dismissAllowingStateLoss();
129+
frag.dismissAllowingStateLoss();
130130
}
131131
}
132132
});
@@ -392,4 +392,4 @@ public void run() {
392392
public String getCallbackUrl() {
393393
return this.callbackUrl;
394394
}
395-
}
395+
}

0 commit comments

Comments
 (0)