Do not call bluetooth state listener after service is destroyed.

pull/1/head
Greyson Parrelli 6 years ago
parent f164ac90db
commit 2b14c98eb0

@ -109,7 +109,7 @@ public class BluetoothStateManager {
}
private void handleBluetoothStateChange() {
if (listener != null) listener.onBluetoothStateChanged(isBluetoothAvailable());
if (listener != null && !destroyed.get()) listener.onBluetoothStateChanged(isBluetoothAvailable());
}
private boolean isBluetoothAvailable() {

Loading…
Cancel
Save