var filesArray = [file]; if (navigator.canShare && navigator.canShare({ files: filesArray })) { navigator .share({ title: "Hello👋", text:"My Text" , url: "", files: filesArray, }) .then(() => console.log("Successful share")) .catch((error) => console.log("Error in sharing", error)); } else { console.log(`system does not support sharing files.`); } };Quiero enviar video también. Si el tipo de archivo es .mp4, se enviará como "video.mp4" en lugar de "imagen.jpg. ¿Alguien tiene idea de cómo superarlo? Cómo tener condiciones para eso