shared: Indexer: Consider new NOACCESS too

This commit is contained in:
Albert S. 2022-06-23 15:26:24 +02:00
부모 9fd48d4664
커밋 780318db6d
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제

파일 보기

@ -120,7 +120,8 @@ void Indexer::dirScanProgress(int current, int total)
void Indexer::processFileScanResult(FileScanResult result)
{
if(result.second == DBFAIL || result.second == PROCESSFAIL || result.second == NOTFOUND)
if(result.second == DBFAIL || result.second == PROCESSFAIL || result.second == NOTFOUND ||
result.second == NOACCESS)
{
this->currentIndexResult.results.append(result);
if(!keepGoing)