Hey, I’m having an issue with the Telegram plugin.
After linking a Telegram account, the link process completes successfully, but the telegramId and telegramUsername fields aren’t being updated in the database.
Here’s my setup:
"better-auth": "^1.3.1",
"better-auth-telegram": "^0.3.1"
And my plugin configuration is pretty basic:
telegram({
botToken: process.env.TELEGRAM_BOT_TOKEN!,
botUsername: "username",
});
The Telegram linking flow works fine (the success message shows up), but the user record in the DB stays unchanged.
Is there something I’m missing in the configuration, or should this update happen manually?