From 9eca54cbb5df3825e7cced3c3087f622a97006ea Mon Sep 17 00:00:00 2001 From: Izan Gil <66965250+SrIzan10@users.noreply.github.com> Date: Wed, 3 Sep 2025 22:41:45 +0200 Subject: [PATCH] fix: follow notifications showing untrue information --- apps/web/src/app/(ui)/(protected)/api/stream/follow/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/app/(ui)/(protected)/api/stream/follow/route.ts b/apps/web/src/app/(ui)/(protected)/api/stream/follow/route.ts index 1dc2d35..05fcb42 100644 --- a/apps/web/src/app/(ui)/(protected)/api/stream/follow/route.ts +++ b/apps/web/src/app/(ui)/(protected)/api/stream/follow/route.ts @@ -103,7 +103,7 @@ export async function POST(request: NextRequest) { }); await queue.add(`newFollow:${username}`, { - text: `You started following \`${username}\`!\n_Stream notifications are enabled by default. If you want to disable them, you can do so in \`Profile > Notifications\`._`, + text: `You started following \`${username}\`!\n_Stream notifications are disabled by default. If you want to enable them, you can do so in \`Profile > Notifications\`._`, channel: user.slack_id, }); }