From 892c34fe35e5f31f25fbb537056af1c53f38612f Mon Sep 17 00:00:00 2001 From: Emmanuel Ferdman Date: Mon, 2 Dec 2024 17:15:09 +0200 Subject: [PATCH] Fix license link in API docs (#3910) Signed-off-by: Emmanuel Ferdman --- src/NzbDrone.Host/Startup.cs | 2 +- src/Readarr.Api.V1/openapi.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Host/Startup.cs b/src/NzbDrone.Host/Startup.cs index 8a07f532e..1a8044293 100644 --- a/src/NzbDrone.Host/Startup.cs +++ b/src/NzbDrone.Host/Startup.cs @@ -105,7 +105,7 @@ namespace NzbDrone.Host License = new OpenApiLicense { Name = "GPL-3.0", - Url = new Uri("https://github.com/Readarr/Readarr/blob/develop/LICENSE") + Url = new Uri("https://github.com/Readarr/Readarr/blob/develop/LICENSE.md") } }); diff --git a/src/Readarr.Api.V1/openapi.json b/src/Readarr.Api.V1/openapi.json index 9e93d68ba..9e364d2ae 100644 --- a/src/Readarr.Api.V1/openapi.json +++ b/src/Readarr.Api.V1/openapi.json @@ -5,7 +5,7 @@ "description": "Readarr API docs", "license": { "name": "GPL-3.0", - "url": "https://github.com/Readarr/Readarr/blob/develop/LICENSE" + "url": "https://github.com/Readarr/Readarr/blob/develop/LICENSE.md" }, "version": "1.0.0" },