mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 13:06:50 +00:00
fix(bot): format ids correctly in a few places
This commit is contained in:
parent
f6fceffc3f
commit
c3a30a59cd
7 changed files with 13 additions and 13 deletions
|
|
@ -18,7 +18,7 @@ public class SystemLink
|
|||
|
||||
var existingAccount = await ctx.Repository.GetSystemByAccount(account.Id);
|
||||
if (existingAccount != null)
|
||||
throw Errors.AccountInOtherSystem(existingAccount);
|
||||
throw Errors.AccountInOtherSystem(existingAccount, ctx.Config);
|
||||
|
||||
var msg = $"{account.Mention()}, please confirm the link.";
|
||||
if (!await ctx.PromptYesNo(msg, "Confirm", account, false)) throw Errors.MemberLinkCancelled;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue