Skip to content

Commit c30eecb

Browse files
Fix typo in database file name
Renamed the database file from 'cloudotps.db' to 'cloudotp.db' to correct a typo and ensure consistency across the application.
1 parent fba86c2 commit c30eecb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Database/database_manager.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import '../Utils/hive_util.dart';
3737
enum EncryptDatabaseStatus { defaultPassword, customPassword }
3838

3939
class DatabaseManager {
40-
static const _dbName = "cloudotps.db";
40+
static const _dbName = "cloudotp.db";
4141
static const _unencrypedFileHeader = "SQLite format 3";
4242
static const _dbVersion = 6;
4343
static Database? _database;

0 commit comments

Comments
 (0)