Unique_ids waren zu lange

This commit is contained in:
Jonas Linter
2025-10-06 15:22:56 +02:00
parent c320fe866d
commit 4b37d8c52c

View File

@@ -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]