Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/16ea643340756dc528ae8af8057a7017788370ea?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
9 additions and
9 deletions
@ -50,7 +50,7 @@ namespace NzbDrone.Web.Models
//SMTP
[DisplayName("Enabled")]
[Description("Enable SMTP notifications?")]
[Description("Enable Email notifications?")]
public bool SmtpEnabled { get ; set ; }
[DisplayName("Notify on Grab")]
@ -34,11 +34,8 @@
<a href="#">XBMC</a></h3>
@{Html.RenderPartial("Xbmc", Model);}
<h3>
<a href="#">SMTP</a></h3>
@{Html.RenderPartial("Smtp", Model);}
<h3>
<a href="#">Twitter</a></h3>
@{Html.RenderPartial("Twitter", Model);}
<a href="#">Plex</a></h3>
@{Html.RenderPartial("Plex", Model);}
<h3>
<a href="#">Growl</a></h3>
@{Html.RenderPartial("Growl", Model);}
@ -46,8 +43,11 @@
<a href="#">Prowl</a></h3>
@{Html.RenderPartial("Prowl", Model);}
<h3>
<a href="#">Plex</a></h3>
@{Html.RenderPartial("Plex", Model);}
<a href="#">Email</a></h3>
@{Html.RenderPartial("Smtp", Model);}
<h3>
<a href="#">Twitter</a></h3>
@{Html.RenderPartial("Twitter", Model);}
</div>
<button type="submit" class="save_button" disabled="disabled">
@ -60,5 +60,5 @@
</label>
@Html.TextBoxFor(m => m.SmtpToAddresses, new { @class = "inputClass" })
<input type="button" onclick="testSmtpSettings();" value="Test SMTP " id="smtpTest"/>
<input type="button" onclick="testSmtpSettings();" value="Send Test email " id="smtpTest"/>
</div>