You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thanks for creating this plugin! Unfortunately it does not work reliably for me because it gets confused with items that have multiple grouped versions (e.g. a 1080p x264 version and a 4K HEVC version). The reason seems to be that e.Session.FullNowPlayingItem.GetMediaSources(false, false, new LibraryOptions()) does not include all media sources of the item.
I believe this can be fixed by changing the first argument to true: e.Session.FullNowPlayingItem.GetMediaSources(true, false, new LibraryOptions()), so that it includes the alternate media sources.
The text was updated successfully, but these errors were encountered:
Hi,
thanks for creating this plugin! Unfortunately it does not work reliably for me because it gets confused with items that have multiple grouped versions (e.g. a 1080p x264 version and a 4K HEVC version). The reason seems to be that
e.Session.FullNowPlayingItem.GetMediaSources(false, false, new LibraryOptions())
does not include all media sources of the item.I believe this can be fixed by changing the first argument to true:
e.Session.FullNowPlayingItem.GetMediaSources(true, false, new LibraryOptions())
, so that it includes the alternate media sources.The text was updated successfully, but these errors were encountered: