Hi All
I asked this question before but I got no answer. Problem is that I login from a phone. Then I login from another phone without logout on the first phone. Then I logout on the second phone. Then I open my application again on the first phone again. Then, Debug.Log(exception) shows 2207 error code which is ok since session was changed when I logout on the second phone. But what is wrong is that although exception shows 2207, when I debug appErrorCode it prints 0. Can someone help me to solve this? Code snippet that cause this issue is below:
string currentTime = GameUtility.GetUTCFormattedTimestamp (currentServerTime);
Query q1 = QueryBuilder.Build("Start",currentTime, Operator.LESS_THAN);
Query q2 = QueryBuilder.Build("End",currentTime, Operator.GREATER_THAN_EQUALTO);
Query query = QueryBuilder.CompoundOperator(q1, Operator.AND, q2);
App42API.BuildStorageService().FindDocumentsByQuery("Agame","Data",query, new RetrieveSeasonInfoCallBack());