Issue with Avatar data type

Hi there,

It seems that there may be a bug with the API in getting the “Avatar” type. I’m sending the below body to the generate API:

[{
	"name":"photo",
	"percentBlank":0,
	"type":"Avatar",
	"height":"300",
	"width":"500"
}]

The API responds back with the following JSON:

{
    "photo": "https://robohash.org/esseautnon.jpg?size=50x500&set=set1"
}

You can see that even though I’m specifying the height to be 300 and width to be 500, it’s ignoring the height and just setting it to 50. It should be responding back with the URL https://robohash.org/esseautnon.jpg?size=300x500&set=set1

Is anyone else experiencing this issue? It is something I’m doing wrong?

Thanks,

Dylan