Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/f98002c576f379adf1457fa49bb5b24d6793952d
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
11 additions and
4 deletions
@ -6,7 +6,7 @@
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0" />
</startup>
<cassette rewriteHtml="true" cacheDirectory="cassette-cache" />
<cassette rewriteHtml="true" cacheDirectory="cassette-cache" debug="true" />
<appSettings>
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
@ -2,7 +2,7 @@
/// <reference path="SearchResultModel.js" />
NzbDrone . AddSeries . SearchResultCollection = Backbone . Collection . extend ( {
url : NzbDrone . Constants . ApiRoot + "/series/lookup" ,
url : NzbDrone . Constants . ApiRoot + 'series/lookup' ,
model : NzbDrone . AddSeries . SearchResultModel ,
} ) ;
@ -13,8 +13,11 @@ if (typeof console == "undefined") {
NzbDrone = new Backbone . Marionette . Application ( ) ;
NzbDrone . AddSeries = NzbDrone . module ( "AddSeries" ) ;
NzbDrone . Constants = {
ApiRoot : 'http://localhost:8080/api/v1/'
ApiRoot : ' /api/'
} ;
NzbDrone . Events = {
@ -8,4 +8,8 @@ window.onerror = function (msg, url, line) {
// If you return true, then error alerts (like in older versions of
// Internet Explorer) will be suppressed.
return suppressErrorAlert ;
} ;
} ;
$ ( document ) . ajaxSuccess ( function ( event , XMLHttpRequest , ajaxOptionsa ) {
console . log ( ajaxOptionsa ) ;
} ) ;