mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[27] fix playlist NoneType Error
This commit is contained in:
parent
b65b4f885f
commit
d95e2b145c
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.17.1-develop26
|
||||
1.17.1-develop27
|
||||
|
|
|
@ -137,7 +137,7 @@ class DataFile:
|
|||
variables[name_var] = str(name)
|
||||
|
||||
variables["library_type"] = self.library.type.lower() if self.library else "items"
|
||||
variables["library_name"] = self.library.name
|
||||
variables["library_name"] = self.library.name if self.library else "playlist"
|
||||
|
||||
template_name = variables["name"]
|
||||
template, temp_vars = self.templates[template_name]
|
||||
|
|
Loading…
Reference in a new issue