We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1837dd0 commit 58ad779Copy full SHA for 58ad779
scripts/index.js
@@ -2432,8 +2432,10 @@ async function getDiscordLaunchConfig() {
2432
const intent = await res.json();
2433
2434
if (intent.mode === 'daily') {
2435
+ console.log("Launched with intent for Daily Befuddle");
2436
return 'daily';
2437
} else if (intent.mode === 'free' && intent.cardId) {
2438
+ console.log("Launched with intent for Free Befuddle, card ID:", intent.cardId);
2439
window.discordCardId = intent.cardId;
2440
return 'cardId';
2441
} else {
0 commit comments