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 Reader::getOrigId() {
|
||||||
string origId;
|
string value;
|
||||||
this->getMetatag("startfileuid", origId);
|
this->getMetatag("startfileuid", value);
|
||||||
|
if(value.empty())
|
||||||
if (!origId.empty()) {
|
return "";
|
||||||
std::string id=value;
|
std::string id=value;
|
||||||
std::string origID;
|
std::string origID;
|
||||||
std::string temp="";
|
std::string temp="";
|
||||||
|
|
Loading…
Reference in New Issue