fix: linting

This commit is contained in:
Adrien Raffin-Caboisse 2022-04-21 23:56:58 +02:00
parent 17d6624bb9
commit b9fee36f6e
No known key found for this signature in database
GPG Key ID: 7FB60532DEBEAD6A
2 changed files with 2 additions and 1 deletions

View File

@ -267,6 +267,7 @@ func expandAlias(
alias, alias,
) )
} }
return ips, nil return ips, nil
} else { } else {
return ips, err return ips, err

View File

@ -361,7 +361,7 @@ func (h *Headscale) UpdateMachine(machine *Machine) error {
} }
// UpdateDBMachine takes a Machine struct pointer (typically already loaded from database // UpdateDBMachine takes a Machine struct pointer (typically already loaded from database
// search for the same machine in the database and update the latter // search for the same machine in the database and update the latter.
func (h *Headscale) UpdateDBMachine(machine Machine) error { func (h *Headscale) UpdateDBMachine(machine Machine) error {
destMachine := Machine{} destMachine := Machine{}
if result := h.db.Where("id = ?", machine.ID).Find(&destMachine); result.Error != nil { if result := h.db.Where("id = ?", machine.ID).Find(&destMachine); result.Error != nil {