6 hours ago
(This post was last modified: 5 hours ago by IndianaLarry. Edited 1 time in total.)
From my experience, any changes to the XML files are ignored in favor of what is in the library.db database file. To fix this in bulk, we will need SQL. With that said, considering that a lot of information is stored as JSON in the data column and editing JSON in SQLITE is no small matter, this will be a bit of an undertaking.
If you want to try figuring it out, this documentation can get you started (although be sure to edit library.db, NOT jellyfin.db). The playlists are found in the TypedBaseItems table, with a value of "MediaBrowser.Controller.Playlists.Playlist."
If you want to try figuring it out, this documentation can get you started (although be sure to edit library.db, NOT jellyfin.db). The playlists are found in the TypedBaseItems table, with a value of "MediaBrowser.Controller.Playlists.Playlist."
Code:
select * from TypedBaseItems where type = 'MediaBrowser.Controller.Playlists.Playlist';