Include a payload when disallowing remote control

This commit is contained in:
Matt 2022-07-19 18:51:30 -04:00
parent 12c6bc82a1
commit 7f109d4d71
1 changed files with 4 additions and 1 deletions

View File

@ -95,7 +95,10 @@ class WSClient(threading.Thread):
),
})
else:
self.client.jellyfin.post_capabilities({})
self.client.jellyfin.post_capabilities({
"PlayableMediaTypes": "Audio, Video",
"SupportsMediaControl": False
})
# Reinitialize the retry counter after successful connection
self.retry_count = 0