From 4a0dd14ba4cbc36f764fee001af2aee779438ca6 Mon Sep 17 00:00:00 2001 From: oshawott Date: Wed, 16 Mar 2022 18:23:54 +1100 Subject: [PATCH] Fix opening gift page from Club Gift notification Didn't use the ui-config value for the HC gift page. Opens blank catalogue. --- src/api/notification/NotificationUtilities.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/notification/NotificationUtilities.ts b/src/api/notification/NotificationUtilities.ts index 27979b52..a561fe73 100644 --- a/src/api/notification/NotificationUtilities.ts +++ b/src/api/notification/NotificationUtilities.ts @@ -99,7 +99,7 @@ export class NotificationUtilities { if(numGifts <= 0) return; - this.showSingleBubble(numGifts.toString(), NotificationBubbleType.CLUBGIFT, null, ('catalog/open/' + CatalogPageName.CLUB_GIFTS)); + this.showSingleBubble(numGifts.toString(), NotificationBubbleType.CLUBGIFT, null, ('catalog/open/' + GetConfiguration('hc.center')['catalog.gifts'])); } public static handleMOTD(messages: string[]): void