We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 073d7a3 commit d422c34Copy full SHA for d422c34
controllers/BookController.go
@@ -681,6 +681,7 @@ func (this *BookController) Copy() {
681
sourceBook.Author = strings.TrimSpace(this.GetString("author", ""))
682
sourceBook.AuthorURL = strings.TrimSpace(this.GetString("author_url", ""))
683
sourceBook.PrivatelyOwned, _ = strconv.Atoi(this.GetString("privately_owned"))
684
+ sourceBook.MemberId = this.Member.MemberId
685
err = sourceBook.Copy(sourceIdentify)
686
if err != nil {
687
this.JsonResult(1, "拷贝书籍失败:"+err.Error())
0 commit comments