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

Fixed: new series searching is less restrictive

pull/6/head
Mark McDowall 11 years ago
parent a7cabc49b4
commit 57a6e39669

@ -57,7 +57,13 @@ define(
this.$el.addClass(this.className);
this.ui.seriesSearch.keypress(function () {
this.ui.seriesSearch.keyup(function (e) {
//Ignore special keys: http://www.javascripter.net/faq/keycodes.htm
if (_.contains([9, 16, 17, 18, 19, 20, 33, 34, 35, 36, 37, 38, 39, 40, 91, 92, 93 ], e.keyCode)) {
return;
}
self.searchResult.close();
self._abortExistingSearch();
self.throttledSearch({

Loading…
Cancel
Save