From 81e8695afaf6c87a204cda3fe3e5f8239b334039 Mon Sep 17 00:00:00 2001 From: Chaz Larson Date: Tue, 5 Nov 2024 11:38:12 -0600 Subject: [PATCH] Change default to webp_lossless --- modules/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/config.py b/modules/config.py index 9289f810..0701ca73 100644 --- a/modules/config.py +++ b/modules/config.py @@ -476,7 +476,7 @@ class ConfigFile: "playlist_report": check_for_attribute(self.data, "playlist_report", parent="settings", var_type="bool", default=True), "verify_ssl": check_for_attribute(self.data, "verify_ssl", parent="settings", var_type="bool", default=True, save=False), "custom_repo": check_for_attribute(self.data, "custom_repo", parent="settings", default_is_none=True), - "overlay_artwork_filetype": check_for_attribute(self.data, "overlay_artwork_filetype", parent="settings", test_list=filetype_list, translations={"webp": "webp_lossy"}, default="jpg"), + "overlay_artwork_filetype": check_for_attribute(self.data, "overlay_artwork_filetype", parent="settings", test_list=filetype_list, translations={"webp": "webp_lossy"}, default="webp_lossless"), "overlay_artwork_quality": check_for_attribute(self.data, "overlay_artwork_quality", parent="settings", var_type="int", default_is_none=True, int_min=1, int_max=100), "assets_for_all": check_for_attribute(self.data, "assets_for_all", parent="settings", var_type="bool", default=False, save=False, do_print=False) }