ignore spotlight subdirectories when doing local folder discovery, sr=mscott, part of 290057

This commit is contained in:
bienvenu%nventure.com 2006-11-27 21:08:10 +00:00
Родитель 69506e4f95
Коммит 32875d5b06
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -220,7 +220,9 @@ nsShouldIgnoreFile(nsString& name)
name.LowerCaseEqualsLiteral("feeditems.rdf"))
return PR_TRUE;
return (nsStringEndsWith(name,".sbd") || nsStringEndsWith(name,SUMMARY_SUFFIX));
// The .mozmsgs dir is for spotlight support
return (nsStringEndsWith(name, ".mozmsgs") || nsStringEndsWith(name,".sbd") ||
nsStringEndsWith(name,SUMMARY_SUFFIX));
}
NS_IMETHODIMP