mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 13:35:58 +03:00
Shibboleth: Fix detection in account wizard #5138
Following redirections generally
(bb5c2cbfa5
) meant that the special
shib-redirection detection code was no longer being used.
This commit is contained in:
parent
6ecda6e7f4
commit
c1eb9244d1
1 changed files with 4 additions and 0 deletions
|
@ -508,6 +508,10 @@ DetermineAuthTypeJob::DetermineAuthTypeJob(AccountPtr account, QObject *parent)
|
|||
: AbstractNetworkJob(account, QString(), parent)
|
||||
, _redirects(0)
|
||||
{
|
||||
// This job implements special redirect handling to detect redirections
|
||||
// to pages that are indicative of Shibboleth-using servers. Hence we
|
||||
// disable the standard job redirection handling here.
|
||||
_followRedirects = false;
|
||||
}
|
||||
|
||||
void DetermineAuthTypeJob::start()
|
||||
|
|
Loading…
Reference in a new issue