Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/e3094d2df11015f36fdc678ddb731156ad663830?style=unified&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
2 additions and
40 deletions
@ -3,7 +3,7 @@ using System.Threading.Tasks;
namespace Ombi.Core.Settings
{
public interface ISettingsService < T > : IDisposable
public interface ISettingsService < T >
{
T GetSettings ( ) ;
Task < T > GetSettingsAsync ( ) ;
@ -155,24 +155,5 @@ namespace Ombi.Settings.Settings
return settings . Content ;
//return _protector.Unprotect(settings.Content);
}
private bool _disposed ;
protected virtual void Dispose ( bool disposing )
{
if ( _disposed )
return ;
if ( disposing )
{
Repo ? . Dispose ( ) ;
}
_disposed = true ;
}
public void Dispose ( )
{
Dispose ( true ) ;
GC . SuppressFinalize ( this ) ;
}
}
}
@ -5,7 +5,7 @@ using Ombi.Store.Entities;
namespace Ombi.Store.Repository
{
public interface ISettingsRepository : IDisposable
public interface ISettingsRepository
{
/// <summary>
/// Inserts the specified entity.
@ -121,24 +121,5 @@ namespace Ombi.Store.Repository
return r ;
}
}
private bool _disposed ;
protected virtual void Dispose ( bool disposing )
{
if ( _disposed )
return ;
if ( disposing )
{
Db ? . Dispose ( ) ;
}
_disposed = true ;
}
public void Dispose ( )
{
Dispose ( true ) ;
GC . SuppressFinalize ( this ) ;
}
}
}