diff --git a/src/routes/api/plist/+server.js b/src/routes/api/plist/+server.js index e0fb8ec..589aeed 100644 --- a/src/routes/api/plist/+server.js +++ b/src/routes/api/plist/+server.js @@ -34,14 +34,14 @@ async function getLoginPairs() { export async function POST({ request }) { const { password } = await request.json(); - if (password === NEW_PLIST_PASSWORD || password === PEAROO_PASSWORD) { + if (password === NEW_PLIST_PASSWORD ) { const pairs = await getLoginPairs(); return json({ success: true, pairs }); } - else if (password === OLD_PLIST_PASSWORD) { + else if (password === OLD_PLIST_PASSWORD || password === PEAROO_PASSWORD) { const pairs = await getLoginPairs(); return json({ success: true,