[cookies] Add `--cookies-from-browser` support for Firefox Flatpak (#9619)

Authored by: un-def
pull/9752/head
Dmitry Meyer 4 weeks ago committed by GitHub
parent b15b0c1d21
commit 2ab2651a4a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -194,7 +194,11 @@ def _firefox_browser_dirs():
yield os.path.expanduser('~/Library/Application Support/Firefox/Profiles')
else:
yield from map(os.path.expanduser, ('~/.mozilla/firefox', '~/snap/firefox/common/.mozilla/firefox'))
yield from map(os.path.expanduser, (
'~/.mozilla/firefox',
'~/snap/firefox/common/.mozilla/firefox',
'~/.var/app/org.mozilla.firefox/.mozilla/firefox',
))
def _firefox_cookie_dbs(roots):

Loading…
Cancel
Save