Fix CustomMessageAdapters.

This commit is contained in:
Sutra Zhou
2018-05-29 15:11:21 +08:00
parent aad62d7739
commit 138fadb68b
2 changed files with 5 additions and 4 deletions
@@ -24,7 +24,7 @@ final class CustomMessageAdapters {
final Map<String, Object> params = new HashMap<String, Object>(3);
params.put("touser", customMessage.getToUser());
params.put("msgtype", msgType);
params.put(msgType, customMessage.getTuple());
params.put(msgType, tuple);
return params;
}