mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-27 09:30:13 +03:00
typo, it is path() not root()
This commit is contained in:
parent
79f28c7f10
commit
ab86052f8a
1 changed files with 2 additions and 2 deletions
|
@ -76,7 +76,7 @@ void Folder::slotPollTimerTimeout()
|
||||||
{
|
{
|
||||||
qDebug() << "* Polling" << alias() << "for changes. Ignoring all pending events until now";
|
qDebug() << "* Polling" << alias() << "for changes. Ignoring all pending events until now";
|
||||||
_watcher->clearPendingEvents();
|
_watcher->clearPendingEvents();
|
||||||
qDebug() << "* " << root() << "Poll timer disabled";
|
qDebug() << "* " << path() << "Poll timer disabled";
|
||||||
_pollTimer->stop();
|
_pollTimer->stop();
|
||||||
startSync(QStringList());
|
startSync(QStringList());
|
||||||
}
|
}
|
||||||
|
@ -103,7 +103,7 @@ void Folder::slotSyncFinished()
|
||||||
_watcher->setEventsEnabled(true);
|
_watcher->setEventsEnabled(true);
|
||||||
_openAction->setIcon(QIcon(FOLDER_ICON));
|
_openAction->setIcon(QIcon(FOLDER_ICON));
|
||||||
// reenable the poll timer
|
// reenable the poll timer
|
||||||
qDebug() << "* " << root() << "Poll timer enabled";
|
qDebug() << "* " << path() << "Poll timer enabled";
|
||||||
_pollTimer->start();
|
_pollTimer->start();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue