-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sync history containing episode with absolute numbering #224
Comments
@rectifyer Anything to add? |
TODO: Handle this case in `add_to_history` interface. Blocked by trakt/api-help#224
TODO: Handle this case in `add_to_history` interface. Blocked by trakt/api-help#224
@rectifyer Has this been fixed? Does The only option I could come up with was:
As you can see, this seems extremely wasteful, especially for shows with lots of episodes. Is there a better way? |
We don't have enough data to make the |
That is a bit sad. But if TMDB doesn't provide the abs number, how are they shown for the existing shows? Imported from TVDB, and not updated anymore? |
Correct. It’s old data from TVDB. |
I'm trying to add support for absolute numbered episodes in my scrobbler, and got it working for the
/scrobble
endpoint by using the docs. Now I'm trying to figure out how to add such an episode to watched history, using the/sync/history
endpoint.My normal flow involves finding the trakt id for the show using the
/search
endpoint, and then constructing the json request body like so:But for absolute numbered episodes, we don't have a season number. I tried directly putting the
episodes
inside the show object, but the server ignored it and instead synced the whole show:In my opinion, this should be supported by the server. Am I doing something wrong?
The text was updated successfully, but these errors were encountered: