Fix opening gift page from Club Gift notification

Didn't use the ui-config value for the HC gift page.
Opens blank catalogue.
This commit is contained in:
oshawott 2022-03-16 18:23:54 +11:00
parent 85c344a4f1
commit 4a0dd14ba4

View File

@ -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