Commit 36664634 authored by astaxie's avatar astaxie

Merge pull request #1467 from astaxie/revert-1464-master

Revert "Update orm_querym2m.go"
parents a1d5f958 ed99c013
...@@ -55,7 +55,7 @@ func (o *queryM2M) Add(mds ...interface{}) (int64, error) { ...@@ -55,7 +55,7 @@ func (o *queryM2M) Add(mds ...interface{}) (int64, error) {
for i, md := range mds { for i, md := range mds {
if reflect.Indirect(reflect.ValueOf(md)).Kind() != reflect.Struct && i > 0 { if reflect.Indirect(reflect.ValueOf(md)).Kind() != reflect.Struct && i > 0 {
other_values = append(other_values, md) other_values = append(other_values, md)
mds = append(mds[:1], mds[2:]...) mds = append(mds[:i], mds[i+1:]...)
} }
} }
for _, md := range mds { for _, md := range mds {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment