Index: sources/device/DeviceModels.cpp =================================================================== diff -u -rbf9223700613ced6c377f3e3a7b4de8367c30474 -rbc425138c540402c9a9867bf34757e896507eea8 --- sources/device/DeviceModels.cpp (.../DeviceModels.cpp) (revision bf9223700613ced6c377f3e3a7b4de8367c30474) +++ sources/device/DeviceModels.cpp (.../DeviceModels.cpp) (revision bc425138c540402c9a9867bf34757e896507eea8) @@ -230,7 +230,9 @@ // get the value QString val = vByteArray; - ok = ! val.isNull() && val.isSimpleText(); + // TODO: Qt6 port - find replacement for deprecated QString::isSimpleText(). + // ok = ! val.isNull() && val.isSimpleText(); + ok = ! val.isNull(); // 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