I would like for Plex to forget about everything I’ve watched before. In other word, mark everything in the library (and anything added later) as as unwatched. I know I can rub out the database, but is there a more surgical approach?
Thanks,
Paul
I would like for Plex to forget about everything I’ve watched before. In other word, mark everything in the library (and anything added later) as as unwatched. I know I can rub out the database, but is there a more surgical approach?
Thanks,
Paul
DELETE * from metadata_item_settings;
That will nuke the entire table that tracks that info.
Thanks! I think that’s what I’m looking for, but I may be calling it wrong.
sqlite3 com.plexapp.plugins.library.db “DELETE * from metadata_item_settings;”
Error: near “*”: syntax error
should be DELETE FROM metadata_item_settings;
Thanks, guys. Really appreciate it.
Paul