@onyx-p/imlib-web 2.7.3 → 2.7.4
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 +1 -1
- package/index.umd.js +1 -1
- package/package.json +1 -1
package/index.esm.js
CHANGED
@@ -22504,7 +22504,7 @@ class MessageCache {
|
|
22504
22504
|
for (const message of messages) {
|
22505
22505
|
try {
|
22506
22506
|
const messageToStore = {
|
22507
|
-
...message,
|
22507
|
+
...deepClone(message),
|
22508
22508
|
dialogId
|
22509
22509
|
};
|
22510
22510
|
if (messageToStore.content) {
|
package/index.umd.js
CHANGED
@@ -22510,7 +22510,7 @@
|
|
22510
22510
|
for (const message of messages) {
|
22511
22511
|
try {
|
22512
22512
|
const messageToStore = {
|
22513
|
-
...message,
|
22513
|
+
...deepClone(message),
|
22514
22514
|
dialogId
|
22515
22515
|
};
|
22516
22516
|
if (messageToStore.content) {
|