mirror of
https://github.com/Readarr/Readarr
synced 2026-04-22 21:01:06 +02:00
use _.debounce instead of _.throttle for search
This commit is contained in:
parent
344844234a
commit
4b5d03ac94
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ define(
|
|||
isExisting: this.isExisting
|
||||
});
|
||||
|
||||
this.throttledSearch = _.throttle(this.search, 1000, {trailing: true}).bind(this);
|
||||
this.throttledSearch = _.debounce(this.search, 1000, {trailing: true}).bind(this);
|
||||
},
|
||||
|
||||
_onSeriesAdded: function (options) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue