Cannot send file

 await interaction.reply({
        ephemeral: true,
        files: skin.map(
          (i) =>
            new AttachmentBuilder(
              Buffer.from(i.file, 'base64'),
              { name: `${i.name}.png` }
            )
        ),
      });

This code used to work in v13 but now silently fails with an interaction error
Was this page helpful?