Today, 12:26 AM
To delete all stats for all users, you can use direct sqlite commands:
- turn off jellyfin (so that you dont corrupt the data)
- go to the "data" folder (where library.db is)
- run the command
- this deletes all userdata (watch history, favorites)
Hope that helps
- turn off jellyfin (so that you dont corrupt the data)
- go to the "data" folder (where library.db is)
- run the command
sqlite3 library.db "DELETE FROM UserDatas;"
- this deletes all userdata (watch history, favorites)
Hope that helps