mirror of
https://github.com/tulir/mautrix-whatsapp
synced 2024-12-14 17:33:48 +01:00
Don't ignore errors when getting DB schema version
It probably never errors because connection errors would break the create table call, but this way is safer.
This commit is contained in:
parent
7f636e6aef
commit
ccfd7819c3
1 changed files with 4 additions and 3 deletions
|
@ -2,6 +2,7 @@ package upgrades
|
|||
|
||||
import (
|
||||
"database/sql"
|
||||
"errors"
|
||||
"fmt"
|
||||
"strings"
|
||||
|
||||
|
@ -52,9 +53,9 @@ func GetVersion(db *sql.DB) (int, error) {
|
|||
}
|
||||
|
||||
version := 0
|
||||
row := db.QueryRow("SELECT version FROM version LIMIT 1")
|
||||
if row != nil {
|
||||
_ = row.Scan(&version)
|
||||
err = db.QueryRow("SELECT version FROM version LIMIT 1").Scan(&version)
|
||||
if err != nil && !errors.Is(err, sql.ErrNoRows) {
|
||||
return -1, err
|
||||
}
|
||||
return version, nil
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue