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:
Christian Kamm 2016-08-26 12:56:36 +02:00
parent 6ecda6e7f4
commit c1eb9244d1

View file

@ -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()