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

Este commit está contenido en:
Albert S. 2022-06-05 20:55:06 +02:00
padre 61a446ec2d
commit 61fa7ca16d
Se han modificado 1 ficheros con 5 adiciones y 0 borrados

Ver fichero

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