Fix cancel button in notification dialog

pull/3321/head
Alex Baker 10 months ago
parent 809c5622f9
commit 0b9a168f69

@ -54,7 +54,8 @@ public class NotificationDialog extends DialogFragment {
break;
}
})
.setNegativeButton(R.string.cancel, null)
.setNegativeButton(R.string.cancel, (dialogInterface, i) -> handler.dismiss()
)
.show();
}

Loading…
Cancel
Save