Add errors

This commit is contained in:
Luke Vella 2025-03-10 12:11:15 +00:00
parent a13418306e
commit c9e054b5d9
No known key found for this signature in database
GPG key ID: 469CAD687F0D784C

View file

@ -201,13 +201,13 @@ const auth = cache(async () => {
return session; return session;
} }
} catch (e) { } catch (e) {
console.error("FAILED TO GET SESSION"); console.error("FAILED TO GET SESSION", e);
} }
try { try {
return await getLegacySession(); return await getLegacySession();
} catch (e) { } catch (e) {
console.error("FAILED TO GET LEGACY SESSION"); console.error("FAILED TO GET LEGACY SESSION", e);
} }
}); });