Followup to bug 99019, part 2. r=neil, a=jcranmer

CLOSED TREE
This commit is contained in:
Magnus Melin 2013-09-30 22:00:03 +03:00
Родитель 4015d058d2
Коммит 24d2b18c8d
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1672,7 +1672,7 @@ nsNntpIncomingServer::SetSearchValue(const nsAString &aSearchValue)
// check that all parts of the search string occur
bool found = true;
for (uint32_t j = 0; j < searchStringParts.Length(); ++j) {
if (mGroupsOnServer[i].Find(searchStringParts[j], CaseInsensitiveCompare)) {
if (MsgFind(mGroupsOnServer[i], searchStringParts[j], true, 0) == kNotFound) {
found = false;
break;
}