fixes #3142 - Huddle01 installation (no success message and no redirect) issue (#3231)

This commit is contained in:
noobyogi0010 2022-07-07 06:51:16 +05:30 committed by GitHub
parent 8ca627040b
commit 34cd41be67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,5 +39,6 @@ export default async function handler(req: NextApiRequest, res: NextApiResponse)
}
return res.status(500);
}
return res.redirect("/apps/installed");
// need to return a json object with the response status
return res.status(200).json({ url: "/apps/installed" });
}