summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuha Kukkonen <ext-juha.kukkonen@nokia.com>2012-09-07 14:21:08 +0300
committerJuha Kukkonen <ext-juha.kukkonen@nokia.com>2012-09-10 08:51:16 +0300
commitd262f8602661f222819c5d4b468a1c23257e643c (patch)
treee47afd6e9f0337ee288440f5ba690c24412e522b
parentf51cebf6b67385241c0fd08755dc59f7220742fa (diff)
Fix handling of type 4 tag specific command replies on Symbian
It was possible to send tag specific commands using QNearFieldTarget sendCommand() but any replies were dropped in case of type 4 tags. Task-number: QTMOBILITY-2074 Task-number: QTBUG-22568
-rw-r--r--src/connectivity/nfc/qnearfieldtagtype4_symbian.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/connectivity/nfc/qnearfieldtagtype4_symbian.cpp b/src/connectivity/nfc/qnearfieldtagtype4_symbian.cpp
index 4df5539b1d..5e93782c9f 100644
--- a/src/connectivity/nfc/qnearfieldtagtype4_symbian.cpp
+++ b/src/connectivity/nfc/qnearfieldtagtype4_symbian.cpp
@@ -134,6 +134,11 @@ QVariant QNearFieldTagType4Symbian::decodeResponse(const QByteArray &command, co
result = response;
}
}
+ else
+ {
+ LOG("tag specific command");
+ result = response;
+ }
END
return result;
}