Two examples come to mind… I had to buy a new cell phone when AT&T stopped using a 3g network and had to buy a new PC to use Turbo Tax this year, which required Windows 11.
Sequel (iOS) app cannot sync with Trakt right now. I have revoked access from trakt’s end and attempted to connect/reconnect it multiple times, but it just wont seem to sync with Trakt anymore. Wonder if this is all related
same problem ended up changing my code to check for show plays as they changed some parameters from the sync/watched endpoint, it works but my fix seems glitched, but im unable to find any other solution yet,with my current fix some shows arent marked as watched but the seasons are if i mark the show watched it returns watched from then on, then there are all shows i remember recently and they are marked watched, this has to be server side problem.
for item in trakt_api.get_watched(section):
if section == SECTIONS.MOVIES:
watched[item['movie']['ids']['trakt']] = item['plays'] > 0
elif section == SECTIONS.TV:
(BROKEN) - if 'seasons' in item:
watched[item['show']['ids']['trakt']] = len([e for s in item['seasons'] if s['number'] != 0 for e in s['episodes']])
else:
(GLITCHY FIX) - watched[item['show']['ids']['trakt']] = item.get('plays', 0)
no you were fine, i could feel the frustration and i get it. I’m dealing with a product at home that I’ve had to replace 3 times in two years so thats where my frustration was coming from earlier.
anyway, the third party devs should pick up on the changes relatively quickly. they usually do
I have a forked fixed version of Seren that fixes the show progress issue (I’ve not looked at the movies part). Do you want the link to it so you can download it? If that’s allowed on here?
May want to address this on the addons subreddit. There’s at least one thread discussing this with one of the developers stating they fixed theirs.