mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-17 12:51:01 +00:00
Don't check non-connected URLs.
This commit is contained in:
parent
ce733ae76b
commit
71a7898ee6
1 changed files with 3 additions and 0 deletions
|
|
@ -52,6 +52,9 @@ class SslCertificateCheck(_ConnectionPlugin):
|
|||
return
|
||||
if not url_data.valid:
|
||||
return
|
||||
if url_data.url_connection is None:
|
||||
# not allowed to connect
|
||||
return
|
||||
if url_data.scheme != 'https':
|
||||
return
|
||||
host = url_data.urlparts[1]
|
||||
|
|
|
|||
Loading…
Reference in a new issue