From ae890090735215ebfcb668ff954ff5725f5b2ad2 Mon Sep 17 00:00:00 2001 From: yuk7hi <27483852+yuk7hi@users.noreply.github.com> Date: Mon, 27 Nov 2023 12:04:23 +0530 Subject: [PATCH] Fix same server matching bug in watch status sync --- utility/sync_watch_status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utility/sync_watch_status.py b/utility/sync_watch_status.py index 3fa4ca7..7dc5c1a 100644 --- a/utility/sync_watch_status.py +++ b/utility/sync_watch_status.py @@ -526,7 +526,7 @@ if __name__ == '__main__': for user in plexTo: username, server = user - if server == serverFrom: + if server.friendlyName == serverFrom: same_server = True sync_watch_status(watched_lst, _library.title, server, username, same_server)