From 64c4354e5e89f3bf9a8a2b266001bbf3a81cafc0 Mon Sep 17 00:00:00 2001 From: collin Date: Thu, 30 Apr 2026 22:10:00 +0200 Subject: [PATCH] Fixing bootstrapped notification to show proper version --- src/ntfy/provider.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ntfy/provider.ts b/src/ntfy/provider.ts index bf35b9c..761d94e 100644 --- a/src/ntfy/provider.ts +++ b/src/ntfy/provider.ts @@ -62,9 +62,9 @@ export class NtfyProvider implements OnApplicationBootstrap { async sendBootstrappedNotification() { const version = this.configService.get('GIT_COMMIT') ?? - this.configService.get('LOCAL') === 'true' + (this.configService.get('LOCAL') === 'true' ? 'LOCAL' - : 'unknown' + : 'unknown') await this.publishQueue.add( ...NtfyProvider.defaultJob({ title: 'Autobaan up and running',