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:
authorHannah von Reth <hannah.vonreth@owncloud.com>2021-06-18 13:53:54 +0300
committerHannah von Reth <vonreth@kde.org>2021-07-13 11:00:40 +0300
commit1c4f27539d278ed10b20486ffc3db0eeaf08c3fb (patch)
tree21ce9dbb0bd90ec0b38209f6d61fef94b7f7b676 /src/gui/selectivesyncdialog.cpp
parent4e283d8d31d8187500da8ba17b3843cf33f7519a (diff)
Exclude hidden remote files
Diffstat (limited to 'src/gui/selectivesyncdialog.cpp')
-rw-r--r--src/gui/selectivesyncdialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/selectivesyncdialog.cpp b/src/gui/selectivesyncdialog.cpp
index c9e60b33b..338ce4726 100644
--- a/src/gui/selectivesyncdialog.cpp
+++ b/src/gui/selectivesyncdialog.cpp
@@ -192,7 +192,7 @@ void SelectiveSyncWidget::slotUpdateDirectories(QStringList list)
// Check for excludes.
list.erase(std::remove_if(list.begin(), list.end(), [&pathToRemove, this](const QString &it) {
- return _excludedFiles.isExcludedRemote(it, pathToRemove, ItemTypeDirectory);
+ return _excludedFiles.isExcludedRemote(it, pathToRemove, FolderMan::instance()->ignoreHiddenFiles(), ItemTypeDirectory);
}),
list.end());