https://bugs.kde.org/show_bug.cgi?id=489581

--- Comment #1 from Christoph Cullmann <christ...@cullmann.io> ---
void FolderFilesList::checkNextItem(DirectoryWithResults &handleOnFolder) const
{
    /**
     * IMPORTANT: this member function is called by MULTIPLE THREADS
     * => it is const, it shall only modify handleOnFolder
     */

    if (m_cancelSearch) {
        return;
    }

    QDir currentDir(handleOnFolder.directory);
    if (!currentDir.isReadable()) {
        // qDebug() << currentDir.absolutePath() << "Not readable";
        return;
    }

atm we just skip that, perhaps we should add some kind of dummy entry for such
cases to the results

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to