diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2023-09-11 18:12:32 +0300 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2023-09-11 18:12:32 +0300 |
| commit | 39ada4e33e8a833374979614f46c8d990398eac6 (patch) | |
| tree | 6f169b3bf7aff2d6c715fa673e1d8bd5c36b9d27 /plugins | |
| parent | 1815eb1c55ffa82bffe89cfb48e6589ea7585c8e (diff) | |
Set default value for show_image_in_description to true
Diffstat (limited to 'plugins')
| -rw-r--r-- | plugins/ScraperSourcePlugin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ScraperSourcePlugin.py b/plugins/ScraperSourcePlugin.py index 7de7dac..cd7ed3c 100644 --- a/plugins/ScraperSourcePlugin.py +++ b/plugins/ScraperSourcePlugin.py @@ -33,7 +33,7 @@ class Plugin(PluginInterface): params, "selector_image", None ) self.show_image_in_description: bool = get_config_or_default( - params, "show_image_in_description", False + params, "show_image_in_description", True ) print(f"[ScraperSourcePlugin#{self.id}] initialized") |
