Fix re-pair thing call

pull/763/head
Michael Zanetti 2022-02-09 17:15:48 +01:00
parent 46f4d31181
commit c0ead39bf2
1 changed files with 1 additions and 1 deletions

View File

@ -471,7 +471,7 @@ int ThingManager::rePairThing(const QUuid &thingId, const QVariantList &thingPar
if (!name.isEmpty()) {
params.insert("name", name);
}
return m_jsonClient->sendCommand("Things.PairThing", params, this, "pairThingResponse");
return m_jsonClient->sendCommand("Integrations.PairThing", params, this, "pairThingResponse");
}
int ThingManager::confirmPairing(const QUuid &pairingTransactionId, const QString &secret, const QString &username)