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

--- Comment #1 from Alex Richardson <arichardson....@gmail.com> ---
A quick grep points me at:

```
KTextEditor::Document *KateDocManager::findDocument(const QUrl &url) const
{
    QUrl u(url.adjusted(QUrl::NormalizePathSegments));

    // Resolve symbolic links for local files (done anyway in KTextEditor)
    if (u.isLocalFile()) {
        QString normalizedUrl = QFileInfo(u.toLocalFile()).canonicalFilePath();
        if (!normalizedUrl.isEmpty()) {
            u = QUrl::fromLocalFile(normalizedUrl);
        }
    }
```

Possibly replacing this with KIO::stat() could resolve the issue?

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

Reply via email to