Upgrade from 1.31.0 to 1.32.0

Commands from application to game can now contain an empty value

Previously, a command with an empty string as its value would have been silently discarded by the SDK. Now, such commands are accepted and processed using the game’s registered callback, based on the command ID, passing it the empty string value.

Here’s how to avoid a negative impact from this change:

  1. Make sure your application does not mistakenly send commands with an empty value that used to be discarded but could now have adverse effects on your game.
  2. Verify that your command callbacks are not assuming that the command value will never be empty.