Fix PluralKit replies (properly)

This commit is contained in:
Cadence Ember
2026-02-12 13:46:50 +13:00
parent 228766cec0
commit 0d574c1370

View File

@@ -259,7 +259,7 @@ async function pollToEvent(poll) {
* @returns {Promise<{$type: string, $sender?: string, [x: string]: any}[]>}
*/
async function messageToEvent(message, guild, options = {}, di) {
message = {...message}
message = structuredClone(message)
const events = []
/* c8 ignore next 7 */