Hi I’ve recently had a problem that I think I’ve solved on my NextPVR channel for plex.
Users with android devices would have issues with playback. And it looked like the android client was passing two extra parameters IncludeRelated and IncludeRelatedCount.
Are these known parameters? No other client I’ve experienced seem to pass them.
I’ve seen this with the Android client as well. No other client does this. I’m not sure why it’s doing this, but it hasn’t been a problem with channel devving for me. Are there any problems you run into because of those extra parameters?
Instead of adding the exact “missing” parameters to my functions, I usually have added **kwargs (example) at the end of the function/parameters declaration. That way it’ll keep working, even if anything new is (accidentally) added later in time.
@sander1 said:
Instead of adding the exact “missing” parameters to my functions, I usually have added **kwargs (example) at the end of the function/parameters declaration. That way it’ll keep working, even if anything new is (accidentally) added later in time.
Actually, having this issue right now … ;-). And I checked the logs, yep, this is an issue. Do you have a fix for it? If not I can try to modify the code locally.