Sophie

Sophie

distrib > Mandriva > 2009.0 > x86_64 > media > main-testing-src > by-pkgid > 9e87ae1df037743848548d4764ab0e82 > files > 1

digikam-1.0.0-0.0.3mdv2009.0.src.rpm

--- libs/database/collectionmanager.cpp	2009/07/02 15:54:27	990541
+++ libs/database/collectionmanager.cpp	2009/07/09 08:47:21	993646
@@ -547,7 +547,8 @@
 SolidVolumeInfo CollectionManagerPrivate::findVolumeForUrl(const KUrl& url, const QList<SolidVolumeInfo> volumes)
 {
     SolidVolumeInfo volume;
-    QString path = url.path(KUrl::RemoveTrailingSlash);
+    // v.path is specified to have a trailing slash. path needs one as well.
+    QString path = url.path(KUrl::AddTrailingSlash);
     int volumeMatch = 0;
 
     //FIXME: Network shares! Here we get only the volume of the mount path...