mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[26] minor queue fix
This commit is contained in:
parent
64e67d4109
commit
87eab7251b
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.17.0-develop25
|
||||
1.17.0-develop26
|
||||
|
|
|
@ -1008,7 +1008,7 @@ class Overlay:
|
|||
logger.error(f"Overlay Error: failed to parse overlay blur name: {self.name} defaulting to blur(50)")
|
||||
self.name = "blur(50)"
|
||||
elif self.name.startswith("text"):
|
||||
if not self.has_coordinates():
|
||||
if not self.has_coordinates() and not self.queue:
|
||||
raise Failed(f"Overlay Error: overlay attribute's horizontal_offset and vertical_offset are required when using text")
|
||||
match = re.search("\\(([^)]+)\\)", self.name)
|
||||
if not match:
|
||||
|
|
Loading…
Reference in a new issue