Fix crash in filesystem API. #69
@ -42,7 +42,10 @@ func (c *FSClient) Mkdir(ctx context.Context, paths ...string) error {
|
|||||||
|
|
||||||
func (c *FSClient) ReadDir(ctx context.Context, dir string) ([]FileInfo, error) {
|
func (c *FSClient) ReadDir(ctx context.Context, dir string) ([]FileInfo, error) {
|
||||||
res, err := c.client.ReadDir(ctx, &rpc.PathRequest{Path: dir})
|
res, err := c.client.ReadDir(ctx, &rpc.PathRequest{Path: dir})
|
||||||
return convertEntries(res.Entries), err
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return convertEntries(res.Entries), nil
|
||||||
Elara6331 marked this conversation as resolved
Outdated
|
|||||||
}
|
}
|
||||||
|
|
||||||
func convertEntries(e []*rpc.FileInfo) []FileInfo {
|
func convertEntries(e []*rpc.FileInfo) []FileInfo {
|
||||||
|
Loading…
Reference in New Issue
Block a user
Thanks for the PR! Can you please also change
return convertEntries(res.Entries), err
toreturn convertEntries(res.Entries), nil
?