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