1
0
Fork 0

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

Dieser Commit ist enthalten in:
Albert S. 2022-07-11 17:14:45 +02:00
Ursprung 64a9638d1e
Commit cc9dae37e5
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -120,7 +120,7 @@ void Indexer::dirScanProgress(int current, int total)
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);
if(!keepGoing)