From cc518ef30b61fb087129fcf04980e8b732853a1b Mon Sep 17 00:00:00 2001 From: "U-sentia\\cicero" Date: Fri, 17 Jul 2026 17:57:05 +0300 Subject: [PATCH] Fix raw SQLite template parameter dropping for distinct_id column --- patches/7-distinct-id-fix.patch | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 patches/7-distinct-id-fix.patch diff --git a/patches/7-distinct-id-fix.patch b/patches/7-distinct-id-fix.patch new file mode 100644 index 0000000..bfc1343 --- /dev/null +++ b/patches/7-distinct-id-fix.patch @@ -0,0 +1,12 @@ +diff --git a/src/app/api/send/route.ts b/src/app/api/send/route.ts +index b82765ae..82765aee 100644 +--- a/src/app/api/send/route.ts ++++ b/src/app/api/send/route.ts +@@ -160,6 +160,7 @@ export async function POST(request: Request) { + region, + city, + distinctId: id, ++ distinct_id: id, + createdAt, + }); + }