Nathaniel Tampus
Nathaniel Tampus
> > Try now > > **ERROR:** `MessageEmbed.setFooter text must be a string` after downloading the new version What version of discord.js are you using? Have you tried updating to...
This error can also occur when you're trying to pass a `Message` object (or any other object) instead of an interaction. Are you sure you're using this package with an...
it's working fine for me. are you sure you're using the ***client access token*** from https://genius.com/api-clients?  if yes, can you give some examples of songs or queries where it...
Hello. I haven't tried deploying this with different domains for the client and server, but it should probably work if you set the `CORS_ORIGIN` env variable on the server. 1....
I appreciate your interest in this project! Unfortunately, I can't work on this right now since I'm very busy and I'm still not that familiar with Docker. I currently have...
@hriprsd sure, feel free to give it a shot!
Hello, sorry for the late response. I see that you've forked the repo again. Is everything working fine now?
Have you tried running this locally? Everything's working fine for me on local & production deployments, so I can't really help much, but here's how I deployed the repo: ##...
This could be an issue with node_modules. Can you try deleting your node_modules folder and reinstalling? e.g. ```sh rm -rf node_modules pnpm install # assuming you use pnpm ``` if...
Hmm that is weird. You could probably try again with deleting node_modules, but this time also delete the lockfile (`pnpm-lock.yaml`) before reinstalling. ```sh rm -rf node_modules pnpm-lock.yaml pnpm install ```...