forked from mirror/gorm
Don't preload when there are any error happened
This commit is contained in:
parent
c1bb8e4551
commit
a9f54d53fb
|
@ -206,7 +206,9 @@ func Preload(db *gorm.DB) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
preload(db, rels, db.Statement.Preloads[name])
|
if db.Error == nil {
|
||||||
|
preload(db, rels, db.Statement.Preloads[name])
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue