Skip to content

Commit

Permalink
OAuth: Remove the timeout
Browse files Browse the repository at this point in the history
There is no real reason to have a timeout. The connection can stay open
as long as we are not authenticated. The User can still re-open a browser
from the UI at any time.

Issue #6612
  • Loading branch information
ogoffart committed Jun 26, 2018
1 parent e1a4c3a commit b2ef63f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/gui/creds/oauth.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ void OAuth::start()
});
}
});
QTimer::singleShot(5 * 60 * 1000, this, [this] { result(Error); });
}

QUrl OAuth::authorisationLink() const
Expand Down

0 comments on commit b2ef63f

Please sign in to comment.