Unique_ids waren zu lange
This commit is contained in:
@@ -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]
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user