Problem with Tags

I have two small problem with tags :

  • At some point two of my tags got copied to all of my TV show, is the tag manager coming soon ? could you provide an sqlite query to clear them in batch in the mean time

  • My default delay profile somehow has a tag so when I try to change it says “Collection Must Be Empty” but since the field is not visible I can’t clear it. screen cap. Again I’m fine with an sqlite query since the bug has probably been fixed

It was a bug in the migration, it affected anyone that had duplicated tags.

You can either go back to database before the 079 migration or run these and clean it up manually:

Fix Series:
UPDATE Series SET Tags = '[]'

Fix delay Profile:
UPDATE DelayProfiles SET Tags = '[]' WHERE Id = 1

A tag manager is still on the todo list.

It worked, thanks !