Fix tests to include partially watched jellyfin and emby

This commit is contained in:
Luis Garcia
2024-06-02 18:19:48 -06:00
parent 3fdcc99304
commit 4185f5fc94
3 changed files with 57 additions and 22 deletions

View File

@@ -319,7 +319,9 @@ def main_loop():
# Start server_2 at the next server in the list
for server_2 in servers[servers.index(server_1) + 1 :]:
# Check if server 1 and server 2 are going to be synced in either direction, skip if not
if not should_sync_server(server_1[0], server_2[0]) and not should_sync_server(server_2[0], server_1[0]):
if not should_sync_server(
server_1[0], server_2[0]
) and not should_sync_server(server_2[0], server_1[0]):
continue
logger(f"Server 1: {server_1[0].capitalize()}: {server_1[1].info()}", 0)