Changed to notify conditionally.

This commit is contained in:
nhotta%netscape.com 1999-08-10 21:55:50 +00:00
Родитель 5c3e6ac932
Коммит ced17758fc
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -159,7 +159,9 @@ NS_IMETHODIMP nsNativeDetector::DoIt(
nsDetectionConfident aConfidence;
if (SUCCEEDED(DetectCharsetUsingMLang(mMultiLanguage, mMLangConvertCharset,
mCharset, aConfidence, (BYTE *) aBuf, &theSize))) {
mObserver->Notify(mCharset, aConfidence);
if (eNoAnswerMatch != aConfidence) {
mObserver->Notify(mCharset, aConfidence);
}
}
else {
mObserver->Notify("", eNoAnswerMatch);