Justin Rudio

Results 13 comments of Justin Rudio

@MichaelKetchel I didn't get the first error you got, but I encountered the bindings one. The fix for me came from [this link](https://github.com/rwaldron/johnny-five/issues/1101#issuecomment-213581938). I added this to the webpack plugin...

You can change it by accessing `Plex.HTTPClient.Timeout` directly. Like so: ``` plexConn, _ := plex.New("abc", "123") plexConn.HTTPClient.Timeout = time.Minute * 1 ``` But yeah, what's the best way to change...

The whole `Metadata` struct is is getting this error when I run `GetPlaylist(int)` Changing `RatingCount` to `int` now gives me: "json: cannot unmarshal number into Go struct field Metadata.MediaContainer.Metadata.librarySectionID of...

For clarity, the following two functions (and more) share the same ` Metadata` struct when decoding the response body as json from PMS api: `GetSessions()` needs: `Part.ID` -> string `Metadata.LibrarySectionID`...

After changing the appropriate properties to use `json.Number`, sessions and playlist work fine The only one that I can't handle is `OptimizedForStreaming`, which is either: - a boolean when fetching...

Good find! This [commit](https://github.com/jrudio/go-plex-client/commit/c9bf9285c6dfd9a96c1c2b9dc299ff6c3ebfa32c) did something similar take care of it, but there are possibly some edge cases that are not well thought out with my commit. To reproduce the...

Really great work! Looked it over and I love the naming conventions the dynamic types. I think your PR will nullify #35, so I am looking forward to that. I...

I think pastSubscriptions relates to plex pass, please correct me if I am wrong. So the commit 76aabd29f85479a0c8b47fa8877e0cbc1a43afc4 was tested using an account with just one lifetime plex pass and...

How should it be presented? `shart library movies` Movies in your library: ` ` ` ` ` ` ` ` Any other ideas on how output should be formatted?

added `library` command for movies in fabc1db50c29723e21400c57b2b7803935680aba it uses pagination because of discord's character limit it also has filters for downloaded, missing, monitored, etc just need to work on shows