Results 253 comments of Odd Stråbø

I'd need logs, but I suspect the websocket connection dies and doesn't reconnect, or something similar.

Absolutely no reason to bring in an external library for connection back-off. It is not a very complex task, and shouldn't take more than a handful of lines to implement...

The problem likely originates at this line; https://github.com/jellyfin/mopidy-jellyfin/blob/85c271fa371a9e2042db8fab6f267235ff462e9c/mopidy_jellyfin/remote.py#L913 With `track.get('Album')` returning `None` for some tracks without an associated album. `track.get('Album') or ""` would be an appropriate way of handling this,...