mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 13:35:58 +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";
|
||||
_watcher->clearPendingEvents();
|
||||
qDebug() << "* " << root() << "Poll timer disabled";
|
||||
qDebug() << "* " << path() << "Poll timer disabled";
|
||||
_pollTimer->stop();
|
||||
startSync(QStringList());
|
||||
}
|
||||
|
@ -103,7 +103,7 @@ void Folder::slotSyncFinished()
|
|||
_watcher->setEventsEnabled(true);
|
||||
_openAction->setIcon(QIcon(FOLDER_ICON));
|
||||
// reenable the poll timer
|
||||
qDebug() << "* " << root() << "Poll timer enabled";
|
||||
qDebug() << "* " << path() << "Poll timer enabled";
|
||||
_pollTimer->start();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue