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
diff options
context:
space:
mode:
authorKlaas Freitag <freitag@owncloud.com>2016-09-02 17:18:42 +0300
committerKlaas Freitag <freitag@owncloud.com>2016-09-02 17:19:10 +0300
commitf0dc3b2debca9f87c4c79ed52ec6965862c9164e (patch)
tree7c3992003bac4ec4a287116828ecb7d55832010f /src/gui/folderwatcher_linux.cpp
parent84ede3f01fe89c809fa761ff53433a8bef3a11a8 (diff)
FolderWatcher: Also ignore the new sync journal file name format.
Diffstat (limited to 'src/gui/folderwatcher_linux.cpp')
-rw-r--r--src/gui/folderwatcher_linux.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/folderwatcher_linux.cpp b/src/gui/folderwatcher_linux.cpp
index e3c00a4af..72dde4a8d 100644
--- a/src/gui/folderwatcher_linux.cpp
+++ b/src/gui/folderwatcher_linux.cpp
@@ -168,7 +168,8 @@ void FolderWatcherPrivate::slotReceivedNotification(int fd)
if (event->len > 0 && event->wd > -1) {
QByteArray fileName(event->name);
// qDebug() << Q_FUNC_INFO << event->name;
- if (fileName.startsWith(".csync_journal.db") ||
+ if (fileName.startsWith(".sync_") ||
+ fileName.startsWith(".csync_journal.db") ||
fileName.startsWith(".owncloudsync.log")) {
// qDebug() << "ignore journal";
} else {