fix: downloadRawMsgMedia edge case

This commit is contained in:
pk5ls20
2024-10-27 09:04:24 +08:00
parent ad2f843c8f
commit 1eb5cd6237

@@ -344,7 +344,7 @@ export class NTQQFileApi {
filePath: thumbPath, filePath: thumbPath,
}], }],
() => true, () => true,
(arg) => arg.msgId === msgId, (arg) => arg.msgElementId === elementId && arg.msgId === msgId,
1, 1,
timeout, timeout,
); );