mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-16 10:41:34 +03:00
PollJob: Increase timeout
This commit is contained in:
parent
b037e6356e
commit
3aa7178382
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ void PUTFileJob::slotTimeout() {
|
||||||
|
|
||||||
void PollJob::start()
|
void PollJob::start()
|
||||||
{
|
{
|
||||||
setTimeout(30 * 1000);
|
setTimeout(120 * 1000);
|
||||||
QUrl accountUrl = account()->url();
|
QUrl accountUrl = account()->url();
|
||||||
QUrl finalUrl = QUrl::fromUserInput(accountUrl.scheme() + QLatin1String("://") + accountUrl.authority()
|
QUrl finalUrl = QUrl::fromUserInput(accountUrl.scheme() + QLatin1String("://") + accountUrl.authority()
|
||||||
+ (path().startsWith('/') ? QLatin1String("") : QLatin1Literal("/")) + path());
|
+ (path().startsWith('/') ? QLatin1String("") : QLatin1Literal("/")) + path());
|
||||||
|
|
Loading…
Reference in a new issue