Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/ba3b034a3c27ec72ffff8f97a46e4f7df4f89cd6
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
11 additions and
0 deletions
@ -152,6 +152,7 @@ namespace NzbDrone.Web.Controllers
XbmcHosts = _configProvider . XbmcHosts ,
XbmcUsername = _configProvider . XbmcUsername ,
XbmcPassword = _configProvider . XbmcPassword ,
XbmcUpdateWhenPlaying = _configProvider . XbmcUpdateWhenPlaying ,
SmtpEnabled = _externalNotificationProvider . GetSettings ( typeof ( Smtp ) ) . Enable ,
SmtpNotifyOnGrab = _configProvider . SmtpNotifyOnGrab ,
SmtpNotifyOnDownload = _configProvider . SmtpNotifyOnGrab ,
@ -502,6 +503,7 @@ namespace NzbDrone.Web.Controllers
_configProvider . XbmcHosts = data . XbmcHosts ;
_configProvider . XbmcUsername = data . XbmcUsername ;
_configProvider . XbmcPassword = data . XbmcPassword ;
_configProvider . XbmcUpdateWhenPlaying = data . XbmcUpdateWhenPlaying ;
//SMTP
var smtpSettings = _externalNotificationProvider . GetSettings ( typeof ( Smtp ) ) ;
@ -48,6 +48,10 @@ namespace NzbDrone.Web.Models
[DisplayFormat(ConvertEmptyStringToNull = false)]
public string XbmcPassword { get ; set ; }
[DisplayName("Always Update")]
[Description("Update Library even when a video is playing?")]
public bool XbmcUpdateWhenPlaying { get ; set ; }
//SMTP
[DisplayName("Enabled")]
[Description("Enable Email notifications?")]
@ -30,6 +30,11 @@
<span class="small">@Html.DescriptionFor(m => m.XbmcCleanLibrary)</span>
</label>
@Html.CheckBoxFor(m => m.XbmcCleanLibrary, new { @class = "inputClass checkClass" })
<label class="labelClass">@Html.LabelFor(m => m.XbmcUpdateWhenPlaying)
<span class="small">@Html.DescriptionFor(m => m.XbmcUpdateWhenPlaying)</span>
</label>
@Html.CheckBoxFor(m => m.XbmcUpdateWhenPlaying, new { @class = "inputClass checkClass" })
<label class="labelClass">@Html.LabelFor(m => m.XbmcHosts)
<span class="small">@Html.DescriptionFor(m => m.XbmcHosts)</span>