mirror of https://github.com/kiwix/libkiwix.git
+ fix small regression
This commit is contained in:
parent
c9d1f562ff
commit
0bab890203
|
@ -322,10 +322,10 @@ namespace kiwix {
|
|||
}
|
||||
|
||||
string Reader::getOrigId() {
|
||||
string origId;
|
||||
this->getMetatag("startfileuid", origId);
|
||||
|
||||
if (!origId.empty()) {
|
||||
string value;
|
||||
this->getMetatag("startfileuid", value);
|
||||
if(value.empty())
|
||||
return "";
|
||||
std::string id=value;
|
||||
std::string origID;
|
||||
std::string temp="";
|
||||
|
|
Loading…
Reference in New Issue