@onyx-p/imlib-web 1.7.8 → 1.7.9

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 CHANGED
@@ -20723,7 +20723,7 @@ class MessageLoader {
20723
20723
  conversationType: notiMsg.conversationType,
20724
20724
  targetId: notiMsg.targetId
20725
20725
  },
20726
- messageUIdList: notiContent.msgIdList
20726
+ messageUIdList: notiContent.msgIdList.map(id => id.toString())
20727
20727
  }, notiMsg.messageType === NotiMessageTypes.GROUP_ARRIVAL_RECEIPT || notiMsg.messageType === NotiMessageTypes.PRIVATE_ARRIVAL_RECEIPT ? 0 : 1);
20728
20728
  });
20729
20729
  return normalMessages;
package/index.umd.js CHANGED
@@ -20729,7 +20729,7 @@
20729
20729
  conversationType: notiMsg.conversationType,
20730
20730
  targetId: notiMsg.targetId
20731
20731
  },
20732
- messageUIdList: notiContent.msgIdList
20732
+ messageUIdList: notiContent.msgIdList.map(id => id.toString())
20733
20733
  }, notiMsg.messageType === NotiMessageTypes.GROUP_ARRIVAL_RECEIPT || notiMsg.messageType === NotiMessageTypes.PRIVATE_ARRIVAL_RECEIPT ? 0 : 1);
20734
20734
  });
20735
20735
  return normalMessages;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onyx-p/imlib-web",
3
- "version": "1.7.8",
3
+ "version": "1.7.9",
4
4
  "main": "index.umd.js",
5
5
  "module": "index.esm.js",
6
6
  "types": "types/index.d.ts",