From b8d288868d57a90abb9f4873c77a73a8f4286da1 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Sat, 25 Jan 2025 01:46:31 -0600 Subject: [PATCH] Turn on NOTIFY_ENABLED by default (now that it's optimized) --- src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.ts b/src/config.ts index 514ba7e0..b82ef5ea 100644 --- a/src/config.ts +++ b/src/config.ts @@ -261,7 +261,7 @@ class Conf { * This would make Nostr events inserted directly into Postgres available to the streaming API and relay. */ static get notifyEnabled(): boolean { - return optionalBooleanSchema.parse(Deno.env.get('NOTIFY_ENABLED')) ?? false; + return optionalBooleanSchema.parse(Deno.env.get('NOTIFY_ENABLED')) ?? true; } /** Whether to enable Ditto cron jobs. */ static get cronEnabled(): boolean {