This commit is contained in:
2026-03-30 20:24:28 +09:00
7 changed files with 74 additions and 0 deletions
+7
View File
@@ -4,7 +4,14 @@ export async function isSignin(db: Database) {
const origin = await getByIndex(db.server, "name", "origin");
const token = await getByIndex(db.server, "name", "token");
<<<<<<< HEAD
if (!origin || !token) {
=======
if (
origin === undefined ||
token === undefined
) {
>>>>>>> 49ca1fac60aecb94a7d76865c14a673f1ca1eccf
return false;
}