Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/298d6fe3bf3d457c398b61b2682b789ed73313f6
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
0 additions and
5 deletions
@ -8,8 +8,6 @@ namespace NzbDrone.Console
{
public static class ConsoleApp
{
private static readonly Logger Logger = LogManager . GetCurrentClassLogger ( ) ;
public static void Main ( string [ ] args )
{
try
@ -21,7 +19,6 @@ namespace NzbDrone.Console
}
catch ( Exception e )
{
Logger . FatalException ( e . Message , e ) ;
System . Console . ReadLine ( ) ;
}
@ -9,7 +9,6 @@ namespace NzbDrone
{
public static class WindowsApp
{
private static readonly Logger Logger = LogManager . GetCurrentClassLogger ( ) ;
public static void Main ( string [ ] args )
{
@ -24,7 +23,6 @@ namespace NzbDrone
}
catch ( Exception e )
{
Logger . FatalException ( e . Message , e ) ;
var message = string . Format ( "{0}: {1}" , e . GetType ( ) . Name , e . Message ) ;
MessageBox . Show ( text : message , buttons : MessageBoxButtons . OK , icon : MessageBoxIcon . Error , caption : "Epic Fail!" ) ;
}