Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/ae590828da6bbe8e0c6768254a6995434775c8e4
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
10 additions and
9 deletions
@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace NzbDrone.Core.Indexers.Omgwtfnzbs
{
public class Omgwtfnzbs : IndexerWithSetting < OmgwtfnzbsSetting >
public class Omgwtfnzbs : IndexerWithSetting < OmgwtfnzbsSetting s >
{
public override string Name
{
@ -1,17 +1,18 @@
using System ;
using FluentValidation ;
using FluentValidation.Results ;
using Newtonsoft.Json ;
using NzbDrone.Core.Annotations ;
namespace NzbDrone.Core.Indexers.Omgwtfnzbs
{
public class OmgwtfnzbsSetting : AbstractValidator < OmgwtfnzbsSetting > , IIndexerSetting
public class OmgwtfnzbsSetting s : IIndexerSetting
{
public OmgwtfnzbsSetting ( )
{
RuleFor ( c = > c . Username ) . NotEmpty ( ) ;
RuleFor ( c = > c . ApiKey ) . NotEmpty ( ) ;
}
// public OmgwtfnzbsSettings( )
// {
// RuleFor(c => c.Username).NotEmpty();
// RuleFor(c => c.ApiKey).NotEmpty();
// }
[FieldDefinition(0, Label = "Username")]
public String Username { get ; set ; }
@ -19,10 +20,10 @@ namespace NzbDrone.Core.Indexers.Omgwtfnzbs
[FieldDefinition(1, Label = "API Key")]
public String ApiKey { get ; set ; }
public ValidationResult Validate ( )
{
return Validate ( this ) ;
return new ValidationResult ( ) ;
//return Validate(this);
}
}
}