mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 04:29:44 +01:00
[cookies] Update MacOS12 Cookies.binarycookies
location (#2742)
Authored by: mdpauley
This commit is contained in:
parent
e8969bda94
commit
1f7db8533a
@ -454,7 +454,10 @@ def _extract_safari_cookies(profile, logger):
|
||||
cookies_path = os.path.expanduser('~/Library/Cookies/Cookies.binarycookies')
|
||||
|
||||
if not os.path.isfile(cookies_path):
|
||||
raise FileNotFoundError('could not find safari cookies database')
|
||||
logger.debug('Trying secondary cookie location')
|
||||
cookies_path = os.path.expanduser('~/Library/Containers/com.apple.Safari/Data/Library/Cookies/Cookies.binarycookies')
|
||||
if not os.path.isfile(cookies_path):
|
||||
raise FileNotFoundError('could not find safari cookies database')
|
||||
|
||||
with open(cookies_path, 'rb') as f:
|
||||
cookies_data = f.read()
|
||||
|
Loading…
Reference in New Issue
Block a user