liangzimixin 0.3.40 → 0.3.41
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/dist/index.cjs +2 -2
- package/dist/setup-entry.cjs +2 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -18181,7 +18181,7 @@ var quantumImOutbound = {
|
|
|
18181
18181
|
senderId: chatId,
|
|
18182
18182
|
msgType: "markdown",
|
|
18183
18183
|
content: JSON.stringify({ content: text }),
|
|
18184
|
-
skipEncrypt: isEncrypted
|
|
18184
|
+
skipEncrypt: isEncrypted !== true
|
|
18185
18185
|
});
|
|
18186
18186
|
return { channel: CHANNEL_ID, messageId: "", chatId };
|
|
18187
18187
|
},
|
|
@@ -18209,7 +18209,7 @@ var quantumImOutbound = {
|
|
|
18209
18209
|
maxFileSizeMb: fileCfg.maxFileSizeMb,
|
|
18210
18210
|
chunkSizeMb: fileCfg.chunkSizeMb,
|
|
18211
18211
|
timeoutMs: fileCfg.fetchTimeoutMs,
|
|
18212
|
-
skipEncrypt: isEncrypted
|
|
18212
|
+
skipEncrypt: isEncrypted !== true
|
|
18213
18213
|
});
|
|
18214
18214
|
if (result.warning) {
|
|
18215
18215
|
log4.warn("sendMedia:degraded", { chatId, warning: result.warning });
|
package/dist/setup-entry.cjs
CHANGED
|
@@ -4276,7 +4276,7 @@ var quantumImOutbound = {
|
|
|
4276
4276
|
senderId: chatId,
|
|
4277
4277
|
msgType: "markdown",
|
|
4278
4278
|
content: JSON.stringify({ content: text }),
|
|
4279
|
-
skipEncrypt: isEncrypted
|
|
4279
|
+
skipEncrypt: isEncrypted !== true
|
|
4280
4280
|
});
|
|
4281
4281
|
return { channel: CHANNEL_ID, messageId: "", chatId };
|
|
4282
4282
|
},
|
|
@@ -4304,7 +4304,7 @@ var quantumImOutbound = {
|
|
|
4304
4304
|
maxFileSizeMb: fileCfg.maxFileSizeMb,
|
|
4305
4305
|
chunkSizeMb: fileCfg.chunkSizeMb,
|
|
4306
4306
|
timeoutMs: fileCfg.fetchTimeoutMs,
|
|
4307
|
-
skipEncrypt: isEncrypted
|
|
4307
|
+
skipEncrypt: isEncrypted !== true
|
|
4308
4308
|
});
|
|
4309
4309
|
if (result.warning) {
|
|
4310
4310
|
log4.warn("sendMedia:degraded", { chatId, warning: result.warning });
|