Closed pasindu20 closed 2 years ago
I create autoresume system using this git but the cache is not updating
client.getGuildData = (guildId) => { return new Promise((res, rej) => { if(!guildId) rej(new Error("No guildId Provided")); if(client.guilds.cache.has(id)) return res(client.guilds.cache.get(guildId)); console.log(`Getting Guild Data for: ${guildId}`) client.cluster.evalOnCluster(`this.guilds.cache.get(${guildId})`, { guildId }).catch(rej).then(d => res(d)) }) }
issue fix it had some errors on quickmongo db
I create autoresume system using this git but the cache is not updating