[vsco] disable TLS 1.2 cipher suites by default (#7984 #7986)

This commit is contained in:
Mike Fährmann
2025-08-07 08:30:35 +02:00
parent 1522977147
commit c7fe6ba691
2 changed files with 2 additions and 1 deletions

View File

@@ -810,7 +810,7 @@ extractor.*.tls12
Type
``bool``
Default
* ``false``: ``artstation``, ``behance``
* ``false``: ``artstation``, ``behance``, ``vsco``
* ``true``: otherwise
Description
Allow selecting TLS 1.2 cipher suites.

View File

@@ -22,6 +22,7 @@ class VscoExtractor(Extractor):
directory_fmt = ("{category}", "{user}")
filename_fmt = "{id}.{extension}"
archive_fmt = "{id}"
tls12 = False
def __init__(self, match):
Extractor.__init__(self, match)