0
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-12-19 05:29:59 +00:00

[cookies] Add --cookies-from-browser support for MS Store Firefox (#11731)

Authored by: wesson09
This commit is contained in:
wesson09 2024-12-04 18:41:58 +01:00 committed by GitHub
parent cfa76f35d2
commit 354cb4026c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -195,7 +195,10 @@ def _extract_firefox_cookies(profile, container, logger):
def _firefox_browser_dirs(): def _firefox_browser_dirs():
if sys.platform in ('cygwin', 'win32'): if sys.platform in ('cygwin', 'win32'):
yield os.path.expandvars(R'%APPDATA%\Mozilla\Firefox\Profiles') yield from map(os.path.expandvars, (
R'%APPDATA%\Mozilla\Firefox\Profiles',
R'%LOCALAPPDATA%\Packages\Mozilla.Firefox_n80bbvh6b1yt2\LocalCache\Roaming\Mozilla\Firefox\Profiles',
))
elif sys.platform == 'darwin': elif sys.platform == 'darwin':
yield os.path.expanduser('~/Library/Application Support/Firefox/Profiles') yield os.path.expanduser('~/Library/Application Support/Firefox/Profiles')