Invalidate count cache on entity update

This commit is contained in:
mikiher 2025-02-21 09:45:10 +02:00
parent 0cc2e39367
commit e8b60defb6
3 changed files with 12 additions and 0 deletions

View file

@ -140,6 +140,10 @@ class PodcastEpisode extends Model {
PodcastEpisode.addHook('afterCreate', async (instance) => {
libraryItemsPodcastFilters.clearCountCache('podcastEpisode', 'afterCreate')
})
PodcastEpisode.addHook('afterUpdate', async (instance) => {
libraryItemsPodcastFilters.clearCountCache('podcastEpisode', 'afterUpdate')
})
}
get size() {