Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/33274d04f0ab243f5e7ab6360ee5c738722819f1?style=split&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
11 additions and
0 deletions
@ -244,6 +244,7 @@ namespace NzbDrone.Web.Controllers
var model = new MiscSettingsModel ( ) ;
var model = new MiscSettingsModel ( ) ;
model . EnableBacklogSearching = _configProvider . EnableBacklogSearching ;
model . EnableBacklogSearching = _configProvider . EnableBacklogSearching ;
model . AutoIgnorePreviouslyDownloadedEpisodes = _configProvider . AutoIgnorePreviouslyDownloadedEpisodes ;
model . AutoIgnorePreviouslyDownloadedEpisodes = _configProvider . AutoIgnorePreviouslyDownloadedEpisodes ;
model . AllowedReleaseGroups = _configProvider . AllowedReleaseGroups ;
return View ( model ) ;
return View ( model ) ;
}
}
@ -633,6 +634,7 @@ namespace NzbDrone.Web.Controllers
{
{
_configProvider . EnableBacklogSearching = data . EnableBacklogSearching ;
_configProvider . EnableBacklogSearching = data . EnableBacklogSearching ;
_configProvider . AutoIgnorePreviouslyDownloadedEpisodes = data . AutoIgnorePreviouslyDownloadedEpisodes ;
_configProvider . AutoIgnorePreviouslyDownloadedEpisodes = data . AutoIgnorePreviouslyDownloadedEpisodes ;
_configProvider . AllowedReleaseGroups = data . AllowedReleaseGroups ;
return GetSuccessResult ( ) ;
return GetSuccessResult ( ) ;
}
}
@ -15,5 +15,9 @@ namespace NzbDrone.Web.Models
[DisplayName("Automatically Ignore Deleted Episodes")]
[DisplayName("Automatically Ignore Deleted Episodes")]
[Description("Should NzbDrone automatically ignore episodes that were deleted from disk?")]
[Description("Should NzbDrone automatically ignore episodes that were deleted from disk?")]
public bool AutoIgnorePreviouslyDownloadedEpisodes { get ; set ; }
public bool AutoIgnorePreviouslyDownloadedEpisodes { get ; set ; }
[DisplayName("Allowed Release Groups")]
[Description("Comma separated list of release groups to download episodes")]
public string AllowedReleaseGroups { get ; set ; }
}
}
}
}
@ -19,6 +19,11 @@
</label>
</label>
@Html.CheckBoxFor(m => m.AutoIgnorePreviouslyDownloadedEpisodes, new { @class = "inputClass checkClass" })
@Html.CheckBoxFor(m => m.AutoIgnorePreviouslyDownloadedEpisodes, new { @class = "inputClass checkClass" })
<label class="labelClass">@Html.LabelFor(m => m.AllowedReleaseGroups)
<span class="small">@Html.DescriptionFor(m => m.AllowedReleaseGroups)</span>
</label>
@Html.TextBoxFor(m => m.AllowedReleaseGroups, new { @class = "inputClass" })
<div style="overflow: hidden; height: 50px;">
<div style="overflow: hidden; height: 50px;">
</div>
</div>