Do not call bluetooth state listener after service is destroyed.

master
Greyson Parrelli 2018-10-24 10:43:08 -07:00
parent f164ac90db
commit 2b14c98eb0
1 changed files with 1 additions and 1 deletions

View File

@ -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() {