Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/6d3a604677e4c2d4bbee518d17770e5f7732a701
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
24 additions and
12 deletions
@ -20,21 +20,23 @@ namespace NzbDrone.Common.EnvironmentInfo
private readonly Environment . SpecialFolder DATA_SPECIAL_FOLDER = Environment . SpecialFolder . CommonApplicationData ;
public AppFolderInfo ( IDiskProvider diskProvider )
{
_diskProvider = diskProvider ;
public AppFolderInfo ( IDiskProvider diskProvider )
{
_diskProvider = diskProvider ;
if ( OsInfo . IsLinux )
{
DATA_SPECIAL_FOLDER = Environment . SpecialFolder . ApplicationData ;
}
if ( OsInfo . IsLinux )
{
DATA_SPECIAL_FOLDER = Environment . SpecialFolder . ApplicationData ;
}
_logger = LogManager . GetCurrentClassLogger ( ) ;
_logger = LogManager . GetCurrentClassLogger ( ) ;
AppDataFolder = Path . Combine ( Environment . GetFolderPath ( DATA_SPECIAL_FOLDER , Environment . SpecialFolderOption . DoNotVerify ) , "NzbDrone" ) ;
AppDataFolder = Path . Combine ( Environment . GetFolderPath ( DATA_SPECIAL_FOLDER , Environment . SpecialFolderOption . Create ) , "NzbDrone" ) ;
StartUpFolder = new FileInfo ( Assembly . GetExecutingAssembly ( ) . Location ) . Directory . FullName ;
TempFolder = Path . GetTempPath ( ) ;
diskProvider . EnsureFolder ( AppDataFolder ) ;
if ( ! OsInfo . IsLinux )
{
SetPermissions ( ) ;
@ -3,6 +3,7 @@ using System.Collections.Generic;
using System.Data.SQLite ;
using System.Linq ;
using System.Text.RegularExpressions ;
using NLog ;
namespace NzbDrone.Core.Datastore.Migration.Framework
{
@ -24,10 +25,19 @@ namespace NzbDrone.Core.Datastore.Migration.Framework
private static readonly Regex SchemaRegex = new Regex ( @"['\""\[](?<name>\w+)['\""\]]\s(?<schema>[\w-\s]+)" ,
RegexOptions . Compiled | RegexOptions . IgnoreCase | RegexOptions . Multiline ) ;
public SQLiteMigrationHelper ( IConnectionStringFactory connectionStringFactory )
public SQLiteMigrationHelper ( IConnectionStringFactory connectionStringFactory ,Logger logger )
{
_connection = new SQLiteConnection ( connectionStringFactory . MainDbConnectionString ) ;
_connection . Open ( ) ;
try
{
_connection = new SQLiteConnection ( connectionStringFactory . MainDbConnectionString ) ;
_connection . Open ( ) ;
}
catch ( Exception e )
{
logger . ErrorException ( "Couldn't open databse " + connectionStringFactory . MainDbConnectionString , e ) ;
throw ;
}
}
private string GetOriginalSql ( string tableName )