heroiclabs / nakama-js

JavaScript client for Nakama server written in TypeScript.
https://heroiclabs.com/docs/nakama/client-libraries/javascript/
Apache License 2.0
194 stars 55 forks source link

Typo in client.js #3

Closed functorhk closed 6 years ago

functorhk commented 6 years ago

There is a typo in client.js in the line : p.resolve({id: message.rcp.id, payload: message.rpc.payload});

The correct one should be:

p.resolve({id: message.rpc.id, payload: message.rpc.payload});

novabyte commented 6 years ago

@functorhk This was resolved in the 0.2.0 release (also available on NPM)

https://github.com/heroiclabs/nakama-js/releases/v0.2.0