Navidrome DB Corruption #57
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Having issues with media_file db and tags table within. also participants.
Navidrome issues:
i ran the following command
or
then ran this
UPDATE media_file SET participants = '[]' WHERE id = '0f2a81a506f95758208a8cdf08ba220b';navidrome didn't like [] so need {}
UPDATE media_file SET participants = '{}' WHERE id = '0f2a81a506f95758208a8cdf08ba220b';Now something wrong in media_file tags table
-- Find problematic rows:
SELECT id, tags FROM media_file WHERE tags NOT LIKE '{%';-- Fix them (replace YOUR_ID with the actual id, or remove the WHERE clause to update all):
UPDATE media_file SET tags = '{}' WHERE tags NOT LIKE '{%';UPDATE media_file SET tags = '{}' WHERE id = '0f2a81a506f95758208a8cdf08ba220b';And now we are good it seems. Able to scan all folders within navidrome again.