mirror of
https://github.com/syncthing/syncthing.git
synced 2024-11-16 10:28:49 -07:00
lib/db: Handle missed error variable in old schema upgrade (#6528)
This commit is contained in:
parent
ab92f8520c
commit
0ba3abdee4
@ -423,6 +423,9 @@ func (db *schemaUpdater) updateSchema6to7(_ int) error {
|
||||
}
|
||||
return delErr == nil
|
||||
})
|
||||
if delErr != nil {
|
||||
return delErr
|
||||
}
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user