Force RESTAdapter to send unencoded params

Hello,

I’m coding against an API of a very limited embedded device. It expects callbacks in the form

/api/statusValues?ids[]=0&ids[]=1

But what it gets is

/api/statusValues?ids%5B%5D=0&ids%5B%5D=1

I’m making the requests via this.store.query('statusValue', {ids: ids}) with the RESTAdapter.

Any ideas how I can force the adapter to send only unencoded parameters?

Kind regards, haggis