From bfc4f17e053b4002632ac234f241a1a3b868f3d0 Mon Sep 17 00:00:00 2001 From: Joe Milazzo Date: Sun, 28 Jan 2024 15:04:45 -0600 Subject: [PATCH] Polish for Release (#2663) --- API/Services/Plus/ExternalMetadataService.cs | 7 +++++-- .../_components/register/register.component.html | 6 +++--- .../app/registration/user-login/user-login.component.html | 4 ++-- .../change-password/change-password.component.html | 4 +++- openapi.json | 2 +- 5 files changed, 14 insertions(+), 9 deletions(-) diff --git a/API/Services/Plus/ExternalMetadataService.cs b/API/Services/Plus/ExternalMetadataService.cs index 9a157479e..60f945741 100644 --- a/API/Services/Plus/ExternalMetadataService.cs +++ b/API/Services/Plus/ExternalMetadataService.cs @@ -147,7 +147,6 @@ public class ExternalMetadataService : IExternalMetadataService // Recommendations - externalSeriesMetadata.ExternalRecommendations ??= new List(); var recs = await ProcessRecommendations(series, user, result.Recommendations, externalSeriesMetadata); @@ -165,7 +164,11 @@ public class ExternalMetadataService : IExternalMetadataService { Recommendations = recs, Ratings = result.Ratings, - Reviews = result.Reviews + Reviews = result.Reviews.Select(r => + { + r.IsExternal = true; + return r; + }) }; } catch (FlurlHttpException ex) diff --git a/UI/Web/src/app/registration/_components/register/register.component.html b/UI/Web/src/app/registration/_components/register/register.component.html index ab0d7fb9f..c9fe8ccf3 100644 --- a/UI/Web/src/app/registration/_components/register/register.component.html +++ b/UI/Web/src/app/registration/_components/register/register.component.html @@ -6,7 +6,7 @@
-
@@ -21,7 +21,7 @@ -
@@ -39,7 +39,7 @@ {{t('password-validation')}} -
diff --git a/UI/Web/src/app/registration/user-login/user-login.component.html b/UI/Web/src/app/registration/user-login/user-login.component.html index bc4964bfd..eb845d9ca 100644 --- a/UI/Web/src/app/registration/user-login/user-login.component.html +++ b/UI/Web/src/app/registration/user-login/user-login.component.html @@ -7,13 +7,13 @@
-
-
diff --git a/UI/Web/src/app/user-settings/change-password/change-password.component.html b/UI/Web/src/app/user-settings/change-password/change-password.component.html index ab0034d70..85c274fa5 100644 --- a/UI/Web/src/app/user-settings/change-password/change-password.component.html +++ b/UI/Web/src/app/user-settings/change-password/change-password.component.html @@ -24,7 +24,7 @@
-
@@ -36,6 +36,7 @@
@@ -46,6 +47,7 @@
diff --git a/openapi.json b/openapi.json index 36979837f..1d779afe5 100644 --- a/openapi.json +++ b/openapi.json @@ -7,7 +7,7 @@ "name": "GPL-3.0", "url": "https://github.com/Kareadita/Kavita/blob/develop/LICENSE" }, - "version": "0.7.13.7" + "version": "0.7.13.9" }, "servers": [ {