Fix app crash when switching between Android user profiles

This commit is contained in:
Arjan Schrijver 2025-03-05 21:07:37 +01:00
parent c065c6e061
commit 0fc1c7b2b6

View File

@ -130,6 +130,9 @@ public final class BtBRQueue {
} catch (IOException e) {
LOG.error("IO exception while establishing socket connection: ", e);
setDeviceConnectionState(GBDevice.State.NOT_CONNECTED);
} catch (SecurityException e) {
LOG.error("Security exception while establishing socket connection: ", e);
setDeviceConnectionState(GBDevice.State.NOT_CONNECTED);
}
return;