mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 22:17:22 +01:00
fix bot
This commit is contained in:
parent
2fe312ad67
commit
33afe8da2c
3 changed files with 6 additions and 6 deletions
|
|
@ -70,8 +70,8 @@ public partial class MareWizardModule
|
|||
_logger.LogInformation("{method}:{userId}:{uid}:{verificationCode}", nameof(ComponentRelinkVerify), Context.Interaction.User.Id, uid, verificationCode);
|
||||
|
||||
|
||||
_botServices.VerificationQueue.Enqueue(new KeyValuePair<ulong, Action<DiscordBotServices>>(Context.User.Id,
|
||||
async (services) => await HandleVerifyRelinkAsync(Context.User.Id, verificationCode, services).ConfigureAwait(false)));
|
||||
_botServices.VerificationQueue.Enqueue(new KeyValuePair<ulong, Func<DiscordBotServices, Task>>(Context.User.Id,
|
||||
(services) => HandleVerifyRelinkAsync(Context.User.Id, verificationCode, services)));
|
||||
EmbedBuilder eb = new();
|
||||
ComponentBuilder cb = new();
|
||||
eb.WithColor(Color.Purple);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue