db/upnp/Directory: don't log unknown items
This commit is contained in:
parent
f4490f6918
commit
70e5ab3fde
@ -134,20 +134,12 @@ protected:
|
|||||||
m_tobj.m_props["upnp:class"].c_str();
|
m_tobj.m_props["upnp:class"].c_str();
|
||||||
auto item_class = ParseItemClass(item_class_name);
|
auto item_class = ParseItemClass(item_class_name);
|
||||||
if (item_class == UPnPDirObject::ItemClass::UNKNOWN) {
|
if (item_class == UPnPDirObject::ItemClass::UNKNOWN) {
|
||||||
PLOGINF("checkobjok: found object of unknown class: [%s]\n",
|
|
||||||
item_class_name);
|
|
||||||
ok = false;
|
ok = false;
|
||||||
} else {
|
} else {
|
||||||
m_tobj.item_class = item_class;
|
m_tobj.item_class = item_class;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!ok) {
|
|
||||||
PLOGINF("checkobjok: skip: id [%s] pid [%s] clss [%s] tt [%s]\n",
|
|
||||||
m_tobj.m_id.c_str(), m_tobj.m_pid.c_str(),
|
|
||||||
m_tobj.m_props["upnp:class"].c_str(),
|
|
||||||
m_tobj.m_title.c_str());
|
|
||||||
}
|
|
||||||
return ok;
|
return ok;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user