diff options
| author | 2023-05-22 01:03:31 -0400 | |
|---|---|---|
| committer | 2023-05-22 01:03:31 -0400 | |
| commit | bff1d7a3fc1f184002ea6c6f77de675885bda3eb (patch) | |
| tree | eead9e450ed44ac46393ad6db6df8d2f5d7a2bf0 /gallery_dl/__init__.py | |
| parent | 33d4eae5a6df8aaf6757f52ae25f514ff1211c62 (diff) | |
New upstream version 1.25.4.upstream/1.25.4
Diffstat (limited to 'gallery_dl/__init__.py')
| -rw-r--r-- | gallery_dl/__init__.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gallery_dl/__init__.py b/gallery_dl/__init__.py index a430f13..1450e8f 100644 --- a/gallery_dl/__init__.py +++ b/gallery_dl/__init__.py @@ -70,12 +70,14 @@ def main(): if args.cookies_from_browser: browser, _, profile = args.cookies_from_browser.partition(":") browser, _, keyring = browser.partition("+") + browser, _, domain = browser.partition("/") if profile.startswith(":"): container = profile[1:] profile = None else: profile, _, container = profile.partition("::") - config.set((), "cookies", (browser, profile, keyring, container)) + config.set((), "cookies", ( + browser, profile, keyring, container, domain)) if args.options_pp: config.set((), "postprocessor-options", args.options_pp) for opts in args.options: |
