1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-22 18:53:21 +01:00

[cookies] fix macOS Firefox profile path

85b33f5c16
This commit is contained in:
Mike Fährmann 2024-01-03 01:25:50 +01:00
parent 4f3671458e
commit 00570028a3
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -215,9 +215,11 @@ def _firefox_cookies_database(profile=None, container=None):
def _firefox_browser_directory(): def _firefox_browser_directory():
if sys.platform in ("win32", "cygwin"): if sys.platform in ("win32", "cygwin"):
return os.path.expandvars(r"%APPDATA%\Mozilla\Firefox\Profiles") return os.path.expandvars(
r"%APPDATA%\Mozilla\Firefox\Profiles")
if sys.platform == "darwin": if sys.platform == "darwin":
return os.path.expanduser("~/Library/Application Support/Firefox") return os.path.expanduser(
"~/Library/Application Support/Firefox/Profiles")
return os.path.expanduser("~/.mozilla/firefox") return os.path.expanduser("~/.mozilla/firefox")