diff --git a/model/story/chapter.go b/model/story/chapter.go index cbc36ad..c8c0876 100644 --- a/model/story/chapter.go +++ b/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 }