https://bugs.kde.org/show_bug.cgi?id=457685
--- Comment #2 from Fabian Vogt <fab...@ritter-vogt.de> --- The issue appears to be caused by whatever writes into the recently-used.xbel file. In some cases it stores a file path instead of a URL in the "href" attribute, which is treated as a URL by KIO. QUrl("/file/path") has an empty scheme() and isLocalFile() returns false, so it passes the not-really-URL to kio-fuse. kio-fuse in turn uses QUrl::fromUserInput which is smart enough to recognize that it's in fact a local path and converts it to a proper file:// URL internally. That's why it works at all... -- You are receiving this mail because: You are watching all bug changes.