Skip to content

Commit

Permalink
Fix missing show connecting dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
kaaholst committed Sep 1, 2024
1 parent 4d1acb8 commit b3480d4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ private void showConnectingDialog() {
if (connectingDialog == null || !connectingDialog.isShowing()) {
Squeezer.getPreferences(preferences -> {
// We may no longer be attached to the parent activity. If so, do nothing.
if (isAdded()) {
if (!isAdded()) {
return;
}

Expand Down

0 comments on commit b3480d4

Please sign in to comment.