mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-07 06:17:55 +00:00
Check if we got the same member before asking for confirmation (#201)
This commit is contained in:
parent
467d058565
commit
e24c5d095b
1 changed files with 3 additions and 2 deletions
|
|
@ -36,7 +36,8 @@ namespace PluralKit.Bot
|
|||
|
||||
// Warn if there's already a member by this name
|
||||
var existingMember = await _data.GetMemberByName(ctx.System, newName);
|
||||
if (existingMember != null) {
|
||||
if (existingMember != null)
|
||||
if (existingMember.Id != target.Id) {
|
||||
var msg = $"{Emojis.Warn} You already have a member in your system with the name \"{existingMember.NameFor(ctx)}\" (`{existingMember.Hid}`). Do you want to rename this member to that name too?";
|
||||
if (!await ctx.PromptYesNo(msg)) throw new PKError("Member renaming cancelled.");
|
||||
}
|
||||
|
|
@ -476,4 +477,4 @@ namespace PluralKit.Bot
|
|||
await ctx.Reply($"{Emojis.Success} Member deleted.");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue