From 2edd1015973658ef44c1188f8f8c2765d53ead85 Mon Sep 17 00:00:00 2001 From: skylarbarrera Date: Tue, 7 Nov 2023 12:21:41 -0500 Subject: [PATCH] lang: fix english revert --- src/migrations/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/migrations/index.ts b/src/migrations/index.ts index 9dea165b0f5..7eabf31ee25 100644 --- a/src/migrations/index.ts +++ b/src/migrations/index.ts @@ -92,7 +92,7 @@ export async function runMigrations(migrations: Migration[]) { const ranMigrations = []; for (const migration of migrations) { - const migratedAt = false; + const migratedAt = storage.get([migration.name]); const isDeferable = Boolean(migration.defer); if (!migratedAt) {