mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-26 23:28:14 +03:00
fix broken connect() statement
This commit is contained in:
parent
a42ff5a07c
commit
1238ab4f69
1 changed files with 1 additions and 1 deletions
|
@ -279,7 +279,7 @@ void Folder::slotPollTimerTimeout()
|
|||
RequestEtagJob* job = new RequestEtagJob(AccountManager::instance()->account(), remotePath(), this);
|
||||
// check if the etag is different
|
||||
QObject::connect(job, SIGNAL(etagRetreived(QString)), this, SLOT(etagRetreived(QString)));
|
||||
QObject::connect(job, SIGNAL(networkError()), this, SLOT(slotNetworkUnavailable()));
|
||||
QObject::connect(job, SIGNAL(networkError(QNetworkReply *reply)), this, SLOT(slotNetworkUnavailable()));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue