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

Fixed: Don't block ctrl+t from opening a new tab

pull/2/head
Mark McDowall 12 years ago
parent 9d29df836d
commit 44abb6fae8

@ -10,6 +10,10 @@ define(
return;
}
if (e.ctrlKey) {
return;
}
if (e.keyCode === 84) {
$('.x-series-search').focus();
e.preventDefault();

Loading…
Cancel
Save