Sen Jiang

Results 32 comments of Sen Jiang

https://github.com/plexinc/plex-for-kodi/blob/e6610e42ce1afd115cf59632b949e18597625323/lib/_included_packages/plexnet/plexplayer.py#L457 Looks like `obj.startOffset` needs to be `obj.get('startOffset', 0)`

I was affected by this issue, and ended up doing stuff like this to fix it ```rust if map.len() < THRESHOLD { Either::Left(map.iter().par_bridge()) } else { Either::Right(map.par_iter()) } ``` Please...