修复文件内容索引更新时文件过滤判断逻辑的问题;
This commit is contained in:
parent
37e3de3cee
commit
12d5e76cc5
|
@ -89,8 +89,10 @@ void IndexUpdater::UpdateIndex()
|
||||||
contentDb.removeDocument(file.path());
|
contentDb.removeDocument(file.path());
|
||||||
}
|
}
|
||||||
} else if(true == suffixMap[suffix] && !file.isDir()) {
|
} else if(true == suffixMap[suffix] && !file.isDir()) {
|
||||||
if(FileUtils::isEncrypedOrUnsupport(file.path(), suffix) && (file.isModified() || file.isMoveTo())) {
|
if(FileUtils::isEncrypedOrUnsupport(file.path(), suffix)) {
|
||||||
|
if(file.isModified() || file.isMoveTo()) {
|
||||||
contentDb.removeDocument(file.path());
|
contentDb.removeDocument(file.path());
|
||||||
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
qDebug() << "| index:" <<file.path();
|
qDebug() << "| index:" <<file.path();
|
||||||
|
|
Loading…
Reference in New Issue