diff --git a/docs/configuration.rst b/docs/configuration.rst index 54379858..522c2908 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -663,7 +663,7 @@ Example Description List of TLS/SSL cipher suites in - `OpenSSL cipher list format `__ + `OpenSSL cipher list format `__ to be passed to `ssl.SSLContext.set_ciphers() `__ @@ -673,7 +673,7 @@ extractor.*.tls12 Type ``bool`` Default - * ``false``: ``patreon``, ``pixiv:series`` + * ``false``: ``artstation``, ``patreon``, ``pixiv:series`` * ``true``: otherwise Description Allow selecting TLS 1.2 cipher suites. diff --git a/gallery_dl/extractor/artstation.py b/gallery_dl/extractor/artstation.py index 49fde7b2..ce1a78d5 100644 --- a/gallery_dl/extractor/artstation.py +++ b/gallery_dl/extractor/artstation.py @@ -22,6 +22,7 @@ class ArtstationExtractor(Extractor): directory_fmt = ("{category}", "{userinfo[username]}") archive_fmt = "{asset[id]}" browser = "firefox" + tls12 = False root = "https://www.artstation.com" def __init__(self, match):