Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/src/commit/f38430d632996672a3c7741a11793f181d380498/src/NzbDrone/MessageBoxUserAlert.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Lidarr/src/NzbDrone/MessageBoxUserAlert.cs

13 lines
323 B

using System.Windows.Forms;
using Radarr.Host;
namespace NzbDrone
{
public class MessageBoxUserAlert : IUserAlert
{
public void Alert(string message)
{
MessageBox.Show(text: message, buttons: MessageBoxButtons.OK, icon: MessageBoxIcon.Warning, caption: "NzbDrone");
}
}
}