Fixes 404 issue with slug when trailing whitespaces exist
This commit is contained in:
		
							parent
							
								
									b9718661e6
								
							
						
					
					
						commit
						7098e75841
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -12,7 +12,7 @@ export default async function handler(req: NextApiRequest, res: NextApiResponse) | |||
|   if (req.method == "PATCH" || req.method == "POST") { | ||||
|     const data = { | ||||
|       title: req.body.title, | ||||
|       slug: req.body.slug, | ||||
|       slug: req.body.slug.trim(), | ||||
|       description: req.body.description, | ||||
|       length: parseInt(req.body.length), | ||||
|       hidden: req.body.hidden, | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue
	
	 Alex van Andel
						Alex van Andel