Linter fixes

This commit is contained in:
collin 2026-07-24 11:36:24 +02:00
parent 9f043738b4
commit 9059f0071f

View file

@ -62,9 +62,7 @@ export class NtfyProvider implements OnApplicationBootstrap {
async sendBootstrappedNotification() { async sendBootstrappedNotification() {
const version = const version =
this.configService.get<string>('GIT_COMMIT') ?? this.configService.get<string>('GIT_COMMIT') ??
(this.configService.get('LOCAL') === 'true' (this.configService.get('LOCAL') === 'true' ? 'LOCAL' : 'unknown')
? 'LOCAL'
: 'unknown')
await this.publishQueue.add( await this.publishQueue.add(
...NtfyProvider.defaultJob({ ...NtfyProvider.defaultJob({
title: 'Autobaan up and running', title: 'Autobaan up and running',