mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-27 17:37:36 +03:00
Ignore all sync log files in the sync dir.
This commit is contained in:
parent
d3d202de68
commit
09e05392bf
1 changed files with 1 additions and 1 deletions
|
@ -172,7 +172,7 @@ void FolderWatcherPrivate::slotReceivedNotification(int fd)
|
|||
if (event->len > 0 && event->wd > -1) {
|
||||
// qDebug() << Q_FUNC_INFO << event->name;
|
||||
if (QByteArray(event->name).startsWith(".csync") ||
|
||||
QByteArray(event->name) == ".owncloudsync.log") {
|
||||
QByteArray(event->name).startsWith(".owncloudsync.log")) {
|
||||
// qDebug() << "ignore journal";
|
||||
} else {
|
||||
const QString p = _watches[event->wd];
|
||||
|
|
Loading…
Reference in a new issue