IppMsg: Don't encode job attributes if there are none

This commit is contained in:
Ville Nummela 2020-05-19 17:06:56 +03:00 committed by Anton Thomasson
parent 8b1c063f48
commit 2ea4d9f5a3

View file

@ -199,12 +199,14 @@ QByteArray IppMsg::encode(Operation op)
}
for(QJsonArray::iterator ait = _jobAttrs.begin(); ait != _jobAttrs.end(); ait++)
{
ipp << quint8(2);
QJsonObject tmpObj = ait->toObject();
for(QJsonObject::iterator it = tmpObj.begin(); it != tmpObj.end(); it++)
{
QJsonObject val = it.value().toObject();
ipp << encode_attr(val["tag"].toInt(), it.key(), val["value"]);
if (!tmpObj.isEmpty()) {
ipp << quint8(2);
for(QJsonObject::iterator it = tmpObj.begin(); it != tmpObj.end(); it++)
{
QJsonObject val = it.value().toObject();
ipp << encode_attr(val["tag"].toInt(), it.key(), val["value"]);
}
}
}