From 4941470451b7f780fb7662f318fbcd87ab3bc4ac Mon Sep 17 00:00:00 2001 From: Michael Zanetti Date: Thu, 2 Apr 2020 17:39:40 +0200 Subject: [PATCH] Fix reconfigure for userAndPassword auth --- nymea-app/ui/thingconfiguration/SetupWizard.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nymea-app/ui/thingconfiguration/SetupWizard.qml b/nymea-app/ui/thingconfiguration/SetupWizard.qml index 8a65fc50..bae31f2b 100644 --- a/nymea-app/ui/thingconfiguration/SetupWizard.qml +++ b/nymea-app/ui/thingconfiguration/SetupWizard.qml @@ -75,7 +75,7 @@ Page { } Component.onCompleted: { - print("Starting setup wizard") + print("Starting setup wizard. Create Methods:", root.deviceClass.createMethods, "Setup method:", root.deviceClass.setupMethod) if (root.deviceClass.createMethods.indexOf("CreateMethodDiscovery") !== -1) { print("CreateMethodDiscovery") if (deviceClass["discoveryParamTypes"].count > 0) { @@ -115,6 +115,7 @@ Page { case 2: case 3: case 4: + case 5: print("re-pairing", root.device.id) engine.deviceManager.rePairDevice(root.device.id, []); break;