Closed Jacob-Tate closed 8 months ago
Please tell me the trakt username you imported.
I am unable to reproduce the issue locally. Can you tell me the steps to do so?
It appears a similar problem is occuring on the demo instance with invincible
@Jacob-Tate There seems to be a problem in the database migrations. You will have to connect to the database and fix them manually.
This will give you all the metadata which have incorrect information:
SELECT DISTINCT seen.metadata_id
FROM seen
JOIN metadata ON seen.metadata_id = metadata.id
WHERE metadata.lot = 'SH' AND seen.show_extra_information IS NULL;
This will delete the faulty entries:
DELETE FROM seen
WHERE show_extra_information IS NULL
AND metadata_id IN (
SELECT DISTINCT seen.metadata_id
FROM seen
JOIN metadata ON seen.metadata_id = metadata.id
WHERE metadata.lot = 'SH' AND seen.show_extra_information IS NULL
);
I did this on the demo instance. It seems to be working fine now.
This is perfect and fixes it. A way to replicate the issue is as follows:
Thanks for the update.
After importing from trakt a few shows have errors when attempting to open.
Show included in logs: Paradox 2009 https://www.imdb.com/title/tt1460746/
Console Log:
Server Log: