diff --git a/src/file/newfileindexer.cpp b/src/file/newfileindexer.cpp --- a/src/file/newfileindexer.cpp +++ b/src/file/newfileindexer.cpp @@ -53,6 +53,10 @@ QString mimetype; QFileInfo fileInfo(filePath); + if (fileInfo.isSymLink()) { + continue; + } + if (fileInfo.isDir()) { if (!m_config->shouldFolderBeIndexed(filePath)) { continue;