Fixing some issues found by the linter

This commit is contained in:
Imbus 2024-03-02 04:29:50 +01:00
parent c54eccc625
commit 7a12b946a6
3 changed files with 8 additions and 3 deletions

View file

@ -15,7 +15,7 @@ func main() {
conf, err := config.ReadConfigFromFile("config.toml")
if err != nil {
conf = config.NewConfig()
conf.WriteConfigToFile("config.toml")
_ = conf.WriteConfigToFile("config.toml")
}
// Pretty print the current config

View file

@ -104,6 +104,9 @@ func (d *Db) Migrate(dirname string) error {
log.Println("Executed SQL file:", file.Name())
}
tr.Commit()
if tr.Commit() != nil {
return err
}
return nil
}

View file

@ -36,7 +36,9 @@ func TestDbGetUserId(t *testing.T) {
if err != nil {
t.Error("setupState failed:", err)
}
db.AddUser("test", "password")
if db.AddUser("test", "password") != nil {
t.Error("AddUser failed")
}
var id int