@onyx-p/imlib-web 2.5.1 → 2.5.3
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/index.esm.js +3 -1
- package/index.umd.js +3 -1
- package/package.json +1 -1
package/index.esm.js
CHANGED
@@ -29140,7 +29140,9 @@ async function send(message, sentArgs) {
|
|
29140
29140
|
const mentionedInfo = message.content.mentionedInfo;
|
29141
29141
|
if (mentionedInfo.userList?.length) {
|
29142
29142
|
groupParams.at = mentionedInfo.userList.map(e => Long.fromString(e.uin));
|
29143
|
-
const mentionedDetail = JSON.stringify(
|
29143
|
+
const mentionedDetail = JSON.stringify({
|
29144
|
+
atInfo: JSON.stringify(mentionedInfo.userList)
|
29145
|
+
});
|
29144
29146
|
groupParams.msgPreContent = mentionedDetail;
|
29145
29147
|
}
|
29146
29148
|
}
|
package/index.umd.js
CHANGED
@@ -29146,7 +29146,9 @@
|
|
29146
29146
|
const mentionedInfo = message.content.mentionedInfo;
|
29147
29147
|
if (mentionedInfo.userList?.length) {
|
29148
29148
|
groupParams.at = mentionedInfo.userList.map(e => Long.fromString(e.uin));
|
29149
|
-
const mentionedDetail = JSON.stringify(
|
29149
|
+
const mentionedDetail = JSON.stringify({
|
29150
|
+
atInfo: JSON.stringify(mentionedInfo.userList)
|
29151
|
+
});
|
29150
29152
|
groupParams.msgPreContent = mentionedDetail;
|
29151
29153
|
}
|
29152
29154
|
}
|