Don't append "containing ..." to the suggestions if no search index available

This commit is contained in:
kelson42 2014-08-31 13:55:44 -06:00
parent b38c4306d1
commit 7329997959

View File

@ -245,7 +245,7 @@ static int accessHandlerCallback(void *cls,
}
/* Get static skin stuff */
else if (urlStr.size() > 5 && urlStr.substr(0, 6) == "/skin/") {
else if (urlStr.substr(0, 6) == "/skin/") {
content = getResourceAsString(urlStr.substr(6));
mimeType = getMimeTypeForFile(urlStr);
}