Merge pull request #406 from yuk7hi/master

Fix same server matching bug in watch status sync script
This commit is contained in:
blacktwin 2025-03-28 12:40:23 -04:00 committed by GitHub
commit 071709171e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -538,7 +538,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)