realglobe-Inc / sugos

A high-level RPC framework to make remote controlling super easy.
Apache License 2.0
9 stars 0 forks source link

callerが接続時に送る messages が空のとき、actor側で受け取るデータは undefined にしてほしい #19

Open FujiHaruka opened 7 years ago

FujiHaruka commented 7 years ago

@okunishinishi これができるようになってほしいが、エラーで落ちる。

  actor.on(JOIN, async ({ caller, messages = {} }) => {
      console.log(messages) // null
      let { token } = messages
      let ok = false
      if (ok) {
        console.log('Add', caller.key)
        eventFilter.add(caller.key)
      }
  })