1
0

refactor: errors

This commit is contained in:
2024-02-20 11:37:19 +00:00
parent 4e92950929
commit 6036211172
6 changed files with 10 additions and 10 deletions

View File

@@ -371,7 +371,7 @@ func openDatabase(path string) (db *sql.DB, err error) {
}
if version != currentDatabaseVersion {
err = fmt.Errorf("Database is not supported (%d instead of %d)",
err = fmt.Errorf("database is not supported (%d instead of %d)",
version, currentDatabaseVersion)
return
}