From 07b0a2c40afd555ae4af234889144056d47b44b3 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Wed, 29 Nov 2023 20:10:37 +0100 Subject: [PATCH 1/2] Add guard (#2696) --- apps/api/src/app/user/user.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/app/user/user.service.ts b/apps/api/src/app/user/user.service.ts index b72da8af1..fe6625439 100644 --- a/apps/api/src/app/user/user.service.ts +++ b/apps/api/src/app/user/user.service.ts @@ -60,7 +60,7 @@ export class UserService { PROPERTY_SYSTEM_MESSAGE )) as SystemMessage; - if (systemMessageProperty?.targetGroups?.includes(subscription.type)) { + if (systemMessageProperty?.targetGroups?.includes(subscription?.type)) { systemMessage = systemMessageProperty; } From 8e3a144a37e62fddf35b6dfc6b59727654059da1 Mon Sep 17 00:00:00 2001 From: Thomas Kaul <4159106+dtslvr@users.noreply.github.com> Date: Thu, 30 Nov 2023 07:43:41 +0100 Subject: [PATCH 2/2] Fix date (#2699) --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 229695959..4f89102f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Reverted `Nx` from version `17.1.3` to `17.0.2` -## 2.27.0 - 2023-11-24 +## 2.27.0 - 2023-11-26 ### Changed