Increase debouncer time

This commit is contained in:
Mukhtar Akere
2025-05-10 01:27:01 +01:00
parent e05c6d5028
commit 4cdfd051f3

View File

@@ -137,7 +137,7 @@ func New(dc config.Debrid, client types.Client) *Cache {
},
},
}
c.listingDebouncer = utils.NewDebouncer[bool](100*time.Millisecond, func(refreshRclone bool) {
c.listingDebouncer = utils.NewDebouncer[bool](250*time.Millisecond, func(refreshRclone bool) {
c.RefreshListings(refreshRclone)
})
return c