1
0
Fork 0

shared: Indexer: Consider new NOACCESS too

Dieser Commit ist enthalten in:
Albert S. 2022-06-23 15:26:24 +02:00
Ursprung 9fd48d4664
Commit 780318db6d
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -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)