From 007531139e4329f53ca55725672c36ad2e9c4bbd Mon Sep 17 00:00:00 2001 From: object <1972-object@users.noreply.git.krews.org> Date: Mon, 24 Oct 2022 21:36:42 +0000 Subject: [PATCH] Change conditions --- src/hooks/notification/useNotification.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/hooks/notification/useNotification.ts b/src/hooks/notification/useNotification.ts index 828edf20..61ba051b 100644 --- a/src/hooks/notification/useNotification.ts +++ b/src/hooks/notification/useNotification.ts @@ -84,19 +84,21 @@ const useNotificationState = () => if(configuration) for(const key in configuration) options.set(key, configuration[key]); + if (type === 'floorplan_editor.error') options.set('message', options.get('message').replace(/[^a-zA-Z._ ]/g, '')); + const title = getNotificationPart(options, type, 'title', true); const message = getNotificationPart(options, type, 'message', true).replace(/\\r/g, '\r'); const linkTitle = getNotificationPart(options, type, 'linkTitle', false); const linkUrl = getNotificationPart(options, type, 'linkUrl', false); const image = getNotificationImageUrl(options, type); - + if(options.get('display') === 'BUBBLE') { showSingleBubble(LocalizeText(message), NotificationBubbleType.INFO, image, linkUrl); } else { - simpleAlert(message, type, linkUrl, linkTitle, title, image); + simpleAlert(LocalizeText(message), type, linkUrl, linkTitle, title, image); } if(options.get('sound')) PlaySound(options.get('sound')); @@ -346,7 +348,7 @@ const useNotificationState = () => useMessageEvent(HotelClosedAndOpensEvent, event => { const parser = event.getParser(); - + simpleAlert(LocalizeText('opening.hours.disconnected', [ 'h', 'm' ], [ parser.openHour.toString(), parser.openMinute.toString() ]), NotificationAlertType.DEFAULT, null, null, LocalizeText('opening.hours.title')); });