Skip to content

Commit

Permalink
fix: recursively get wiki node list #139
Browse files Browse the repository at this point in the history
  • Loading branch information
Wsine committed Nov 26, 2024
1 parent b7a5fe6 commit d8d5cbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ func (c *Client) GetWikiNodeList(ctx context.Context, spaceID string, parentNode
resp, _, err := c.larkClient.Drive.GetWikiNodeList(ctx, &lark.GetWikiNodeListReq{
SpaceID: spaceID,
PageSize: nil,
PageToken: nil,
PageToken: &resp.PageToken,
ParentNodeToken: parentNodeToken,
})

Expand Down

0 comments on commit d8d5cbb

Please sign in to comment.