mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
use _.debounce instead of _.throttle for search
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user