From 9703f42c0cf64ee35229050a5683ababb60272ab Mon Sep 17 00:00:00 2001 From: CismonX Date: Tue, 24 Jun 2025 08:47:51 +0800 Subject: [PATCH] backend_firefox: bump max supported schema version --- src/backend_firefox.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend_firefox.c b/src/backend_firefox.c index 2355469..e468664 100644 --- a/src/backend_firefox.c +++ b/src/backend_firefox.c @@ -2827,10 +2827,10 @@ store_init ( // which was used in Firefox 62-68. Fortunately, it has not changed // in a way that makes it incompatible with this backend. // - // Schema version 78 is the latest version, used since Firefox 132. + // Schema version 80 is the latest version, used since Firefox 140. // Bump this version whenever a new schema version is available // (after ensuring that no incompatible changes are made). - if (user_version < 52 || user_version > 78) { + if (user_version < 52 || user_version > 80) { log_printf("unsupported schema version %" PRIi64, user_version); return -1; }