Ignore http.file_data during PDML import

This field is just a combination of other http fields
This commit is contained in:
Srivats P 2020-04-07 21:14:44 +05:30
parent 79ada3315a
commit 5efffb0c4b

View File

@ -75,6 +75,9 @@ void PdmlTextProtocol::unknownFieldHandler(QString name, int pos, int size,
const QXmlStreamAttributes &attributes, OstProto::Protocol *pbProto,
OstProto::Stream* /*stream*/)
{
if (name == "http.file_data") // ignore as it's dup of other fields
return;
_retry:
switch(contentType_)
{