Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/4b5d03ac9456eea19c21519c2221131b9e285c83 You should set ROOT_URL correctly, otherwise the web may not work correctly.

use _.debounce instead of _.throttle for search

pull/6/head
kay.one 12 years ago
parent 344844234a
commit 4b5d03ac94

@ -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…
Cancel
Save