summaryrefslogtreecommitdiff
path: root/src/pairing.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pairing.cpp')
-rw-r--r--src/pairing.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pairing.cpp b/src/pairing.cpp
index 0618a19..e1e04cc 100644
--- a/src/pairing.cpp
+++ b/src/pairing.cpp
@@ -140,7 +140,7 @@ void PairingServiceBase::handle(Context & ctx)
state->phase = StatePhase::PeerRequestConfirm;
}
- else if (auto decline = rec->item("decline").asText()) {
+ else if (auto reject = rec->item("reject").asText()) {
if (state->phase < StatePhase::PairingDone) {
state->phase = StatePhase::PairingFailed;
state->success.set_value(false);
@@ -260,7 +260,7 @@ void PairingServiceBase::waitForConfirmation(Peer peer, weak_ptr<State> wstate,
}
} else {
if (state->phase != StatePhase::PairingFailed) {
- peer.send(uuid(), Object(Record({{ "decline", string() }})));
+ peer.send(uuid(), Object(Record({{ "reject", string() }})));
state->phase = StatePhase::PairingFailed;
state->success.set_value(false);
}