Browse Source

Fixed error 'Unsupported document type for unmarshalling: []story.Chapter' in story.ListChapterStoryID

1.0
Gisle Aune 6 years ago
parent
commit
3f5af44dd6
  1. 2
      model/story/chapter.go

2
model/story/chapter.go

@ -72,7 +72,7 @@ func FindChapterID(id string) (Chapter, error) {
// ListChapterStoryID lists all chapters for the story ID
func ListChapterStoryID(storyID string) ([]Chapter, error) {
chapters := make([]Chapter, 0, 8)
err := chapterCollection.Find(bson.M{"storyId": storyID}).Sort("createdDate").One(&chapters)
err := chapterCollection.Find(bson.M{"storyId": storyID}).Sort("createdDate").All(&chapters)
if err != nil {
return nil, err
}

Loading…
Cancel
Save