Fixed: Updated supported wiki links

This commit is contained in:
Mark McDowall 2021-08-01 16:00:52 -07:00
parent 021fd4afa7
commit 0a30735f34
2 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ namespace NzbDrone.Api
resource.Fields = SchemaBuilder.ToSchema(definition.Settings); resource.Fields = SchemaBuilder.ToSchema(definition.Settings);
resource.InfoLink = string.Format("https://wiki.servarr.com/sonarr/supported-{0}", resource.InfoLink = string.Format("https://wiki.servarr.com/sonarr/supported#{0}",
definition.Implementation.ToLower()); definition.Implementation.ToLower());
} }

View File

@ -39,7 +39,7 @@ namespace Sonarr.Api.V3
Tags = definition.Tags, Tags = definition.Tags,
Fields = SchemaBuilder.ToSchema(definition.Settings), Fields = SchemaBuilder.ToSchema(definition.Settings),
InfoLink = string.Format("https://wiki.servarr.com/sonarr/supported-{0}", InfoLink = string.Format("https://wiki.servarr.com/sonarr/supported#{0}",
typeof(TProviderResource).Name.Replace("Resource", "s"), typeof(TProviderResource).Name.Replace("Resource", "s"),
definition.Implementation.ToLower()) definition.Implementation.ToLower())
}; };