groupsSchema: refine --> transform

This commit is contained in:
Alex Gleason 2023-03-13 12:05:56 -05:00
parent a9b79f72b4
commit 607e6b1808
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -25,7 +25,7 @@ const groupSchema = z.object({
locked: z.boolean().catch(false), locked: z.boolean().catch(false),
membership_required: z.boolean().catch(false), membership_required: z.boolean().catch(false),
members_count: z.number().catch(0), members_count: z.number().catch(0),
note: z.string().refine(note => note === '<p></p>' ? '' : note).catch(''), note: z.string().transform(note => note === '<p></p>' ? '' : note).catch(''),
relationship: groupRelationshipSchema.nullable().catch(null), // Dummy field to be overwritten later relationship: groupRelationshipSchema.nullable().catch(null), // Dummy field to be overwritten later
statuses_visibility: z.string().catch('public'), statuses_visibility: z.string().catch('public'),
uri: z.string().catch(''), uri: z.string().catch(''),