I send data type Dictionary to server but server get error "Unexpected data received"
This is my code
var dictDR:Dictionary = new Dictionary();
dictDR[0] = "aaa";
var arr:Array = [];
arr[0] = dictDR;
photon.sendOperation(0, arr);
Please help me, thank all.