shemanaev / jellyfin-plugin-media-cleaner

Automatically delete played media files after specified amount of time.
MIT License
71 stars 1 forks source link

Check creation date for unwatched items #52

Closed NicolaSmaniotto closed 1 month ago

NicolaSmaniotto commented 2 months ago

Adds the same check performed in #36 to the unplayed items (added with #41).

In this way, if an item is not played or was played before being added to Jellyfin, it is considered as "not played by anyone".

Solves the case in which alice watched a movie before it was added, and bob did not watch it. Currently, the media cleaner would not consider it watched by anyone (since the only watch is older than the file), but also not unwatched by everyone because it marks it watched by alice. This makes the file undeletable by the plugin.

With my patch, the behavior is consistent between the two filters: both consider files newer than their plays as unwatched.

shemanaev commented 1 month ago

Thank you for contribution!