mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-29 12:10:37 +00:00
Fix endless loop in http authentication.
This commit is contained in:
parent
653b5f27dd
commit
03ecff22bb
1 changed files with 2 additions and 1 deletions
|
|
@ -248,7 +248,8 @@ class HttpUrl (internpaturl.InternPatternUrl, proxysupport.ProxySupport):
|
|||
return response
|
||||
if not self.auth:
|
||||
self.construct_auth()
|
||||
continue
|
||||
if self.auth:
|
||||
continue
|
||||
break
|
||||
return response
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue