Index: sources/device/DeviceModels.cpp =================================================================== diff -u -ra2a273600d25e863214833ead3324a63fb4759f1 -r57ea732311e6f4c746974f5a52316f63dec23ca8 --- sources/device/DeviceModels.cpp (.../DeviceModels.cpp) (revision a2a273600d25e863214833ead3324a63fb4759f1) +++ sources/device/DeviceModels.cpp (.../DeviceModels.cpp) (revision 57ea732311e6f4c746974f5a52316f63dec23ca8) @@ -232,7 +232,7 @@ // get the value QString val = vByteArray; - ok = ! val.isNull() && val.isSimpleText(); + ok = ! val.isNull(); // TODO: add regex to check valid string // && val.isSimpleText(); // check if the vExitCode passed and it has a value other than zero if ( ! ok ){ _data.mReason = Device::DeviceError::eDevice_Scripts_Error_Incorrect_Rsp_Type ; goto lError; } // there is not a valid value @@ -277,7 +277,7 @@ // get the value QString val = vByteArray; - ok = ! val.isNull() && val.isSimpleText(); + ok = ! val.isNull(); // TODO: add regex to check valid string // && val.isSimpleText(); // check if the vExitCode passed and it has a value other than zero if ( ! ok ){ _data.mReason = Device::DeviceError::eDevice_Scripts_Error_Incorrect_Rsp_Type ; goto lError; } // there is not a valid value