1
0
Fork 0

shared: IndexSyncer: Check whether file is located in a mountpath

Dieser Commit ist enthalten in:
Albert S. 2022-06-05 20:55:06 +02:00
Ursprung 61a446ec2d
Commit 61fa7ca16d
1 geänderte Dateien mit 5 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -55,6 +55,11 @@ void IndexSyncer::sync()
emit finished(totalUpdatesFilesCount, totalDeletedFilesCount, totalErroredFilesCount);
return;
}
if(Common::isMountPath(fileData.absPath))
{
continue;
}
QFileInfo fileInfo(fileData.absPath);
if(fileInfo.exists())
{