diff --git a/mobile/lib/db/files_db.dart b/mobile/lib/db/files_db.dart index b7c67ff36..c6ba617e0 100644 --- a/mobile/lib/db/files_db.dart +++ b/mobile/lib/db/files_db.dart @@ -167,7 +167,9 @@ class FilesDB { await tx.execute('PRAGMA user_version = $toVersion'); }); } else if (currentVersion > toVersion) { - throw AssertionError("currentVersion cannot be greater than toVersion"); + throw AssertionError( + "currentVersion($currentVersion) cannot be greater than toVersion($toVersion)", + ); } }