Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/3c6338cadc2126f20ad8a00c69b849950186bc24
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
22 additions and
9 deletions
@ -24,6 +24,8 @@
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
// ************************************************************************/
# endregion
using System ;
using System.Collections.Generic ;
using System.Linq ;
@ -70,18 +72,29 @@ namespace PlexRequests.Core
private void MigrateDb ( ) // TODO: Remove when no longer needed
{
var result = new List < long > ( ) ;
RequestedModel [ ] requestedModels ;
var repo = new GenericRepository < RequestedModel > ( Db ) ;
var records = repo . GetAll ( ) ;
var requestedModels = records as RequestedModel [ ] ? ? records . ToArray ( ) ;
if ( ! requestedModels . Any ( ) )
{ return ; }
try
{
var records = repo . GetAll ( ) ;
var jsonRepo = new JsonRequestService ( new RequestJsonRepository ( Db , new MemoryCacheProvider ( ) ) ) ;
var result = new List < long > ( ) ;
foreach ( var r in requestedModels )
requestedModels = records as RequestedModel [ ] ? ? records . ToArray ( ) ;
if ( ! requestedModels . Any ( ) )
{ return ; }
var jsonRepo = new JsonRequestService ( new RequestJsonRepository ( Db , new MemoryCacheProvider ( ) ) ) ;
foreach ( var r in requestedModels )
{
var id = jsonRepo . AddRequest ( r ) ;
result . Add ( id ) ;
}
}
catch ( SqliteException )
{
var id = jsonRepo . AddRequest ( r ) ;
result . Add ( id ) ;
// There is no requested table so they do not have an old version of the DB
return ;
}
if ( result . Any ( x = > x = = - 1 ) )