fix tmdb_collections

This commit is contained in:
meisnate12 2021-12-28 16:23:26 -05:00
parent 2b4b557012
commit 3bf3e8a918

View file

@ -570,7 +570,7 @@ def library_operations(config, library):
template[k] = v[int(_i)]
for suffix in library.tmdb_collections["remove_suffix"]:
if _n.endswith(suffix):
_n = _n[:-len(_n)]
_n = _n[:-len(suffix)]
new_collections[_n.strip()] = {"template": template}
metadata = MetadataFile(config, library, "Data", {
"collections": new_collections,