From e2af6be9a8fb696f0e176dabe749fb38bbbfe73c Mon Sep 17 00:00:00 2001 From: Sergey M Date: Tue, 27 Aug 2019 10:15:29 +0700 Subject: [PATCH] Update safari.py --- youtube_dl/extractor/safari.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/youtube_dl/extractor/safari.py b/youtube_dl/extractor/safari.py index 7e6322b8e..bd9ee1647 100644 --- a/youtube_dl/extractor/safari.py +++ b/youtube_dl/extractor/safari.py @@ -68,10 +68,8 @@ class SafariBaseIE(InfoExtractor): raise ExtractorError( 'Unable to login: %s' % credentials, expected=True) - # oreilly serves two same groot_sessionid cookies in Set-Cookie header - # and expects first one to be actually set - # Fix issue #22161 - # We need 2 more cookies to be able to login to oreilly + # oreilly serves two same instances of the following cookies + # in Set-Cookie header and expects first one to be actually set for cookie in ('groot_sessionid', 'orm-jwt', 'orm-rt'): self._apply_first_set_cookie_header(urlh, cookie)