Compare commits

..

1 commit

Author SHA1 Message Date
Niko Storni
b66d119583 update lbry.go library 2020-02-10 14:49:11 +01:00

View file

@ -5,9 +5,9 @@ import (
"reflect" "reflect"
"strings" "strings"
"github.com/pkg/errors"
"github.com/lbryio/sqlboiler/boil" "github.com/lbryio/sqlboiler/boil"
"github.com/lbryio/sqlboiler/strmangle" "github.com/lbryio/sqlboiler/strmangle"
"github.com/pkg/errors"
) )
type loadRelationshipState struct { type loadRelationshipState struct {
@ -259,13 +259,9 @@ func collectLoaded(key string, loadingFrom reflect.Value) (reflect.Value, bindKi
for { for {
switch bkind { switch bkind {
case kindStruct: case kindStruct:
if !loadedObject.IsNil() { collection = reflect.Append(collection, loadedObject)
collection = reflect.Append(collection, loadedObject)
}
case kindPtrSliceStruct: case kindPtrSliceStruct:
if !loadedObject.IsNil() { collection = reflect.AppendSlice(collection, loadedObject)
collection = reflect.AppendSlice(collection, loadedObject)
}
} }
i++ i++