From 5875ad205023ea94b29738387ac41ba87fcc6a04 Mon Sep 17 00:00:00 2001 From: Collin Duncan <3679940+cgduncan7@users.noreply.github.com> Date: Thu, 21 Sep 2023 09:27:40 +0200 Subject: [PATCH] Removing low priority ntfy notifications as they do not get sent --- src/ntfy/provider.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/ntfy/provider.ts b/src/ntfy/provider.ts index a5ec296..de476ee 100644 --- a/src/ntfy/provider.ts +++ b/src/ntfy/provider.ts @@ -92,7 +92,6 @@ export class NtfyProvider implements OnApplicationBootstrap { title: 'Performing reservation', message: `${reservationId} - ${startTime.format()} to ${endTime.format()}`, tags: [MessageTags.badminton], - priority: MessagePriority.low, }), ) } @@ -110,7 +109,6 @@ export class NtfyProvider implements OnApplicationBootstrap { error.name }) - ${error.message}`, tags: [MessageTags.badminton, MessageTags.red_x], - priority: MessagePriority.low, }), ) } @@ -125,7 +123,6 @@ export class NtfyProvider implements OnApplicationBootstrap { title: 'Reservation waitlisted', message: `${reservationId} - ${startTime.format()} to ${endTime.format()}`, tags: [MessageTags.badminton, MessageTags.hourglass], - priority: MessagePriority.low, }), ) } @@ -136,7 +133,6 @@ export class NtfyProvider implements OnApplicationBootstrap { title: 'Wait listed reservation available', message: `${subject}`, tags: [MessageTags.badminton, MessageTags.hourglass], - priority: MessagePriority.low, }), ) }