diff --git a/uuid.js b/uuid.js index 0544b8b..ab1f644 100644 --- a/uuid.js +++ b/uuid.js @@ -45,7 +45,7 @@ app.post('/endpoint', express.raw({ type: '*/*' }), async (req, res) => { } }); // Redirect to the show page with the UDID - res.redirect(`/show/${UDID}`); + res.redirect(301, `/show/${UDID}`); } catch (error) { console.error('Error parsing XML:', error); res.status(500).send('Internal Server Error');