Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/43e02fa24aeb514f9232ed7cf2189c3d2f702602
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
230 additions and
229 deletions
@ -84,7 +84,7 @@ namespace NzbDrone.Web.Controllers
ViewData [ "guid" ] = Guid . NewGuid ( ) ;
ViewData [ "path" ] = path ;
ViewData [ "javaPath" ] = path . Replace ( Path . DirectorySeparatorChar , '|' ) . Replace ( Path . VolumeSeparatorChar , '^' ) ;
ViewData [ "javaPath" ] = path . Replace ( Path . DirectorySeparatorChar , '|' ) . Replace ( Path . VolumeSeparatorChar , '^' ) .Replace ( '\'' , '`' ) ;
var defaultQuality = _configProvider . DefaultQualityProfile ;
var qualityProfiles = _qualityProvider . GetAllProfiles ( ) ;
@ -105,7 +105,7 @@ namespace NzbDrone.Web.Controllers
//Add the new series to the Database
_seriesProvider . AddSeries (
path . Replace ( '|' , Path . DirectorySeparatorChar ) . Replace ( '^' , Path . VolumeSeparatorChar ) , seriesId ,
path . Replace ( '|' , Path . DirectorySeparatorChar ) . Replace ( '^' , Path . VolumeSeparatorChar ) .Replace ( '`' , '\'' ) , seriesId ,
qualityProfileId ) ;
ScanNewSeries ( ) ;
return new JsonResult { Data = "ok" } ;
File diff suppressed because it is too large
Load Diff
@ -633,7 +633,7 @@
<Content Include= "Scripts\Notification.js" />
<Content Include= "Views\AddSeries\AddExisting.cshtml" />
<Content Include= "Views\AddSeries\AddNew.cshtml" />
< None Include= "Views\AddSeries\AddSeriesItem.cshtml" />
< Content Include= "Views\AddSeries\AddSeriesItem.cshtml" />
<Content Include= "Web.config" >
<SubType > Designer</SubType>
</Content>