mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2025-02-16 22:08:25 +00:00
[20] fix blur(50)
This commit is contained in:
parent
ac8dde0fb3
commit
f2c8ee3f4d
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.16.5-develop19
|
||||
1.16.5-develop20
|
||||
|
|
|
@ -319,7 +319,7 @@ class CollectionBuilder:
|
|||
self.overlay = "blur(50)"
|
||||
|
||||
overlay_path = os.path.join(library.overlay_folder, f"{self.overlay}.png")
|
||||
if self.overlay != "blur" and not os.path.exists(overlay_path):
|
||||
if not self.overlay.startswith("blur") and not os.path.exists(overlay_path):
|
||||
raise Failed(f"{self.Type} Error: Overlay Image not found at: {overlay_path}")
|
||||
|
||||
if "suppress_overlays" in methods:
|
||||
|
|
Loading…
Add table
Reference in a new issue