Commit f691e6d0 by 宋毅

tj

parent f346dd53
...@@ -87,7 +87,12 @@ class tmqueryCtl extends CtlBase { ...@@ -87,7 +87,12 @@ class tmqueryCtl extends CtlBase {
decryptResult.msg = "decrypt channelUserId error"; decryptResult.msg = "decrypt channelUserId error";
return decryptResult; return decryptResult;
} }
oldActionBody.channelUserId = decryptResult.data; if (oldActionBody.channelUserId) {
oldActionBody.channelUserId = decryptResult.data;
}
if (oldActionBody.channelUser && oldActionBody.channelUser.channelUserId) {
oldActionBody.channelUser.channelUserId = decryptResult.data;
}
reqobj.actionType = oldActionType; reqobj.actionType = oldActionType;
reqobj.actionBody = oldActionBody; reqobj.actionBody = oldActionBody;
reqobj.isUser = oldIsUser; reqobj.isUser = oldIsUser;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment