Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2014-10-22 17:33:35 +0400
committerOlivier Goffart <ogoffart@woboq.com>2014-10-22 17:33:35 +0400
commit9330d2e1e86bd909e46aa8f318429ab708061e9d (patch)
tree8757cbf0a1a137ea753c7fc0caed4d7a72cb4a7a /src
parent020e19f770fbc4b91ec64727fb5f2dd3e4504fc9 (diff)
SocketAPI: always clean the path and use the normal slash
Diffstat (limited to 'src')
-rw-r--r--src/mirall/socketapi.cpp11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/mirall/socketapi.cpp b/src/mirall/socketapi.cpp
index d53097072..f55809787 100644
--- a/src/mirall/socketapi.cpp
+++ b/src/mirall/socketapi.cpp
@@ -375,7 +375,9 @@ void SocketApi::command_RETRIEVE_FILE_STATUS(const QString& argument, SocketType
DEBUG << "folder offline or not watched:" << argument;
statusString = QLatin1String("NOP");
} else {
- const QString file = argument.mid(syncFolder->path().length());
+
+
+ const QString file = QDir::cleanPath(argument).mid(QDir::cleanPath(syncFolder->path()).length()+1);
SyncFileStatus fileStatus = this->fileStatus(syncFolder, file, _excludes);
statusString = fileStatus.toSocketAPIString();
@@ -501,11 +503,8 @@ SyncFileStatus SocketApi::fileStatus(Folder *folder, const QString& systemFileNa
type = CSYNC_FTW_TYPE_DIR;
}
- // '\' is ignored, so convert to unix path before passing the path in.
- QString unixFileName = QDir::fromNativeSeparators(fileName);
-
// Is it excluded?
- CSYNC_EXCLUDE_TYPE excl = csync_excluded_no_ctx(excludes, unixFileName.toUtf8(), type);
+ CSYNC_EXCLUDE_TYPE excl = csync_excluded_no_ctx(excludes, fileName.toUtf8(), type);
if( excl != CSYNC_NOT_EXCLUDED ) {
return SyncFileStatus(SyncFileStatus::STATUS_IGNORE);
}
@@ -518,7 +517,7 @@ SyncFileStatus SocketApi::fileStatus(Folder *folder, const QString& systemFileNa
}
SyncFileStatus status(SyncFileStatus::STATUS_NONE);
- SyncJournalFileRecord rec = dbFileRecord_capi(folder, unixFileName );
+ SyncJournalFileRecord rec = dbFileRecord_capi(folder, fileName );
if (folder->estimateState(fileName, type, &status)) {
qDebug() << Q_FUNC_INFO << "Folder estimated status for" << fileName << "to" << status.toSocketAPIString();