From d262f8602661f222819c5d4b468a1c23257e643c Mon Sep 17 00:00:00 2001 From: Juha Kukkonen Date: Fri, 7 Sep 2012 14:21:08 +0300 Subject: 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 --- src/connectivity/nfc/qnearfieldtagtype4_symbian.cpp | 5 +++++ 1 file changed, 5 insertions(+) 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; } -- cgit v1.2.3