este script es válido durante 2 horas y luego deja de funcionar sin errores... ¿cómo puedo resolverlo?
import selfcore from "selfcore"; const client = new selfcore('Token') const gateway = new selfcore.Gateway('Token'); gateway.on("message",(m) => { if(m.channel_id === ""){ let content = m.content ? m.content : {embeds : [m.embeds[0]]}; client.sendWebhook("URL",m.channel_id + content); }; });