From 4b37d8c52c8fe64e7e3d69759c2259ba9e6fdd8a Mon Sep 17 00:00:00 2001 From: Jonas Linter Date: Mon, 6 Oct 2025 15:22:56 +0200 Subject: [PATCH] Unique_ids waren zu lange --- src/alpine_bits_python/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/alpine_bits_python/api.py b/src/alpine_bits_python/api.py index 252368f..c6f34c3 100644 --- a/src/alpine_bits_python/api.py +++ b/src/alpine_bits_python/api.py @@ -400,9 +400,9 @@ async def process_wix_form_submission(request: Request, data: Dict[str, Any], db unique_id = data.get("submissionId", generate_unique_id()) - if len(unique_id) > 35: + if len(unique_id) > 32: # strip to first 35 chars - unique_id = unique_id[:35] + unique_id = unique_id[:32]