You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the bot tries to add a user to the waitlist, and the user has no playlists and/or songs, the bot crashes with this error in log:
Error: https://plug.dj/_/booth/add responded with 403 (FORBIDDEN
at process.nextTick (D:\PhpstormProjects\HoRM\rockbot-v2\node_modules\plugapi\lib\client.js:625:39)
at _combinedTickCallback (internal/process/next_tick.js:131:7)
at process._tickCallback (internal/process/next_tick.js:180:9)
The error doesn't seem to be catchable. At least not like this:
try {
data.from.addToWaitList();
}
catch (error) {
bot.sendChat('Error adding a user to waitlist.');
console.error(error);
}
If the bot tries to add a user to the waitlist, and the user has no playlists and/or songs, the bot crashes with this error in log:
The error doesn't seem to be catchable. At least not like this: