wechaty-web-panel 1.2.4 → 1.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -166,7 +166,9 @@ async function callbackEvent({ that, msg, name, id, config, room, isMention }) {
|
|
|
166
166
|
item.moreData &&
|
|
167
167
|
item.moreData.length &&
|
|
168
168
|
item.moreData.forEach((mItem) => {
|
|
169
|
-
|
|
169
|
+
if (mItem.key !== 'uid' && mItem.key !== 'word') {
|
|
170
|
+
data[mItem.key] = mItem.value;
|
|
171
|
+
}
|
|
170
172
|
});
|
|
171
173
|
if (item.type === 100) {
|
|
172
174
|
let res = await superagent_js_1.service.post(item.customUrl, data);
|
|
@@ -155,7 +155,9 @@ async function callbackEvent({ that, msg, name, id, config, room, isMention }) {
|
|
|
155
155
|
item.moreData &&
|
|
156
156
|
item.moreData.length &&
|
|
157
157
|
item.moreData.forEach((mItem) => {
|
|
158
|
-
|
|
158
|
+
if (mItem.key !== 'uid' && mItem.key !== 'word') {
|
|
159
|
+
data[mItem.key] = mItem.value;
|
|
160
|
+
}
|
|
159
161
|
});
|
|
160
162
|
if (item.type === 100) {
|
|
161
163
|
let res = await service.post(item.customUrl, data);
|