shared: Indexer: Use isErrorSaveFileResult() to check for non-successful results

This commit is contained in:
Albert S. 2022-07-11 17:14:45 +02:00
부모 64a9638d1e
커밋 cc9dae37e5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -120,7 +120,7 @@ void Indexer::dirScanProgress(int current, int total)
void Indexer::processFileScanResult(FileScanResult result) void Indexer::processFileScanResult(FileScanResult result)
{ {
if(result.second != OK || result.second != OK_WASEMPTY || result.second != SKIPPED) if(isErrorSaveFileResult(result.second))
{ {
this->currentIndexResult.results.append(result); this->currentIndexResult.results.append(result);
if(!keepGoing) if(!keepGoing)