fix filter applying code to not stop after non-move filters, r=naving, sr=sspitzer, a=asa 167519

This commit is contained in:
bienvenu%netscape.com 2002-09-09 19:21:08 +00:00
Родитель 48262b8fc9
Коммит 2c9683233c
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -155,7 +155,7 @@ nsMsgFilterList::ApplyFiltersToHdr(nsMsgFilterTypeType filterType,
matchTermStatus = filter->MatchHdr(msgHdr, folder, db, headers, headersSize, &result);
if (NS_SUCCEEDED(matchTermStatus) && result && listener)
{
PRBool applyMore;
PRBool applyMore = PR_TRUE;
ret = listener->ApplyFilterHit(filter, msgWindow, &applyMore);
if (NS_FAILED(ret) || !applyMore)