We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
目前trace.moe是无法正常使用的,即使config.jsonc中确实写了trace.moe的网址,在log中还是会报错,而机器人回复也不会包含这个结果。稍微调查了一下,发现是现在whatanime.js写得有一个小bug,第18行目前为 const tokens = global.config.whatanimeTokens; 实际上config.jsonc采用的是whatanimeToken,所以里面只要修改成 const tokens = global.config.whatanimeToken; 就好了
const tokens = global.config.whatanimeTokens;
const tokens = global.config.whatanimeToken;
The text was updated successfully, but these errors were encountered:
确实,感谢报告这个错误
Sorry, something went wrong.
016d0d4
No branches or pull requests
目前trace.moe是无法正常使用的,即使config.jsonc中确实写了trace.moe的网址,在log中还是会报错,而机器人回复也不会包含这个结果。稍微调查了一下,发现是现在whatanime.js写得有一个小bug,第18行目前为
const tokens = global.config.whatanimeTokens;
实际上config.jsonc采用的是whatanimeToken,所以里面只要修改成
const tokens = global.config.whatanimeToken;
就好了
The text was updated successfully, but these errors were encountered: