diff --git a/CHANGELOG.md b/CHANGELOG.md index ef4148aa..995b6be3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Changelog +## Unreleased + ## 1.17.0 - 2021-03-05 ### Additions - [cyberdrop] add support for `https://cyberdrop.me/` ([#1328](https://github.com/mikf/gallery-dl/issues/1328)) diff --git a/gallery_dl/extractor/common.py b/gallery_dl/extractor/common.py index e9b97186..048e0a34 100644 --- a/gallery_dl/extractor/common.py +++ b/gallery_dl/extractor/common.py @@ -216,7 +216,7 @@ class Extractor(): headers.clear() browser = self.config("browser") or self.browser - if browser: + if browser and isinstance(browser, str): browser, _, platform = browser.lower().partition(":") if not platform or platform == "auto": diff --git a/gallery_dl/version.py b/gallery_dl/version.py index f1c49e96..f075fb9d 100644 --- a/gallery_dl/version.py +++ b/gallery_dl/version.py @@ -6,4 +6,4 @@ # it under the terms of the GNU General Public License version 2 as # published by the Free Software Foundation. -__version__ = "1.17.0" +__version__ = "1.17.1-dev"