Merge pull request #147 from luigi311/dev

Plex: Use username
This commit is contained in:
Luigi311
2024-01-25 17:53:38 -07:00
committed by GitHub

View File

@@ -115,7 +115,7 @@ def get_user_library_watched_show(show, process_episodes, threads=None):
def get_user_library_watched(user, user_plex, library):
user_name: str = user.title.lower()
user_name: str = user.username.lower() if user.username else user.title.lower()
try:
logger(
f"Plex: Generating watched for {user_name} in library {library.title}",