+ less if, more efficient

This commit is contained in:
kelson42 2011-10-24 12:55:12 +00:00
parent 1e9bfa168d
commit c40a87837e
1 changed files with 10 additions and 9 deletions

View File

@ -142,17 +142,18 @@ namespace kiwix {
if (content.empty()) {
this->getContentByUrl( "/I/favicon.png", content,
contentLength, mimeType);
}
if (content.empty()) {
this->getContentByUrl( "/I/favicon", content,
contentLength, mimeType);
}
if (content.empty()) {
this->getContentByUrl( "/-/favicon", content,
contentLength, mimeType);
}
}
}
return content.empty() ? false : true;
}