We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b21d069 commit 3d561b0Copy full SHA for 3d561b0
XEngine_Source/MQCore_ProtocolModule/ProtocolModule_Packet/ProtocolModule_Packet.cpp
@@ -624,7 +624,7 @@ bool CProtocolModule_Packet::ProtocolModule_Packet_UNReadMsg(XCHAR* ptszMsgBuffe
624
{
625
Json::Value st_JsonObject;
626
st_JsonObject["tszUserName"] = (*pppSt_UserKey)[i]->tszUserName;
627
- st_JsonObject["nKeySerial"] = (*pppSt_UserKey)[i]->nKeySerial;
+ st_JsonObject["nKeySerial"] = (Json::Value::Int64)(*pppSt_UserKey)[i]->nKeySerial;
628
st_JsonObject["tszCreateTime"] = (*pppSt_UserKey)[i]->tszCreateTime;
629
st_JsonObject["tszKeyName"] = (*pppSt_UserKey)[i]->tszKeyName;
630
st_JsonObject["tszUPTime"] = (*pppSt_UserKey)[i]->tszUPTime;
0 commit comments