1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-10-10 15:18:13 +02:00

Perform Watch X Plus authorization request on each connect

This commit is contained in:
mkusnierz 2019-10-24 22:23:45 +02:00
parent 18d1a7ddc7
commit 4728d5b4d0

View File

@ -53,14 +53,11 @@ public class InitOperation extends AbstractBTLEOperation<WatchXPlusDeviceSupport
@Override
protected void doPerform() throws IOException {
builder.notify(cmdCharacteristic, true);
if (needsAuth) {
builder.add(new SetDeviceStateAction(getDevice(), GBDevice.State.AUTHENTICATING, getContext()));
getSupport().authorizationRequest(builder, needsAuth);
} else {
builder.add(new SetDeviceStateAction(getDevice(), GBDevice.State.INITIALIZING, getContext()));
getSupport().initialize(builder);
getSupport().performImmediately(builder);
}
}
@Override