Problem with channel fetching
Hello.
So Ive been fighting with this for a month now and I don't know where issue is, so im trying my luck here.
I have made a reminders system. Reminders has channel ID and user ID saved in db. I have functions running every 5 seconds that check if there are any reminders to send.
This function fetches the discord user, this works fine and as intendent. But problem I have is with the channel fetch. I'm using
.broadcastEval
function, inside first I try to fetch the channel from cache, if this fails, it try to fetch normally from API. But sometimes this process fails and no shards could find that channel and rather send the reminder into DM. The problem is, that the channel is same in both cases. I tried to use the console logs for debugging, but its just logs that none of the shards could find the channel, but for next reminder with same channel, it could find the channel perfectly fine.
What can be issue here? Or what other alternatives can I try? Someone told me that I shouldnt be fetching channels when using sharding, but then how can I make this reminder system possible?
discord.js - 14.14.1
nodejs - 20.15.112 Replies
- What's your exact discord.js
npm list discord.js
and node node -v
version?
- Not a discord.js issue? Check out #other-js-ts.
- Consider reading #how-to-get-help to improve your question!
- Explain what exactly your issue is.
- Post the full error stack trace, not just the top part!
- Show your code!
- Issue solved? Press the button!
- ✅
Marked as resolved by OPFetching doesn't depend on the shard. It will fetch the same channel from the REST API for all shards
Make it simple. You can fetch the user, just in one shard. Then you can use
user.createDM()
to get the channel.thanks ill check it out
But looking at it right now, this isnt really what i wanted. This createDM works only for DMs am i wrong?
What I wanted is to send the reminder into the channel where reminder was created using channel ID
This DMing user is just if the channel fetching fails for example, if the bot doesnt have permission or other things
but as I said the problem is shards sometimes fetch the channel and sometimes dont. And we talking about same channel
or if i dont use the broadcast eval function at all and directly fetch the channel will it work?
I just tried it and it doesnt work
Okay after some investigation, I got this as error:
Failed to fetch channel DiscordAPIError[50001]: Missing Access
But how can it be missing access when its same channel that it accessed before?
Show the full error, the bot may not have permission to view the channel. Also the way you are getting the channel is wrong. The channel will only be cache on the shard that handles it. So for all the other shard, it won't be at that point you try to fetch the channel which will return an actual channel since it returns from the api. Essentially duplicating the send action for all the shard
Hence why it is not recommended to fetch channels when sharding
In the other part Im running that function only on one shard
broadcastEval will run that on all shard though
But, I managed to fix it by not using functions from discordjs and rather made function that directly using discord API to send the message to the channel
Then you should show your updated code and also the full error you get
yeah i realized that after i sent this, but in this context it doesnt really matter
I put there console log, to show the error and this is what i got:
Failed to fetch channel DiscordAPIError[50001]: Missing Access
I just used the post method /channels/{channelId}/messages
The error could be due to not having
ViewChannel
permission. Verify bot actually has it. Permissions are implicit on discord, SendMessages will be denied when bot can't see the channelI stated multiple times that it was tested on same channel, same channel id. One person got that reminder in the channel other didnt, and they dont the reminder command in the same channel