diff --git a/VERSION b/VERSION index 1da7e851..da080adb 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.15.1-develop86 +1.15.1-develop87 diff --git a/plex_meta_manager.py b/plex_meta_manager.py index 99079a7b..3bc68fc9 100644 --- a/plex_meta_manager.py +++ b/plex_meta_manager.py @@ -433,7 +433,9 @@ def library_operations(config, library): num_edited = 0 for i, item in enumerate(tracks, 1): logger.ghost(f"Processing Track: {i}/{len(tracks)} {item.title}") - if not item.title and item.sortTitle: + if not hasattr(item, "title") or not hasattr(item, "titleSort"): + item.refresh() + elif not item.title and item.sortTitle: library.edit_query(item, {"title.locked": 1, "title.value": item.sortTitle}) num_edited += 1 logger.info(f"Track: {item.sortTitle} was updated with sort title")