Fix crash in filesystem API.

This commit is contained in:
Vyacheslav Chigrin 2024-07-02 23:32:13 +03:00
parent bec703c300
commit d1e5157008

View File

@ -42,6 +42,9 @@ func (c *FSClient) Mkdir(ctx context.Context, paths ...string) error {
func (c *FSClient) ReadDir(ctx context.Context, dir string) ([]FileInfo, error) {
res, err := c.client.ReadDir(ctx, &rpc.PathRequest{Path: dir})
if err != nil {
return nil, err
}
return convertEntries(res.Entries), err
}