Fix error when trying to edit message in DM without link
This commit is contained in:
parent
dbde8c07ad
commit
239afd9b10
@ -67,6 +67,9 @@ namespace PluralKit.Bot
|
|||||||
return msg.Message;
|
return msg.Message;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (ctx.Guild == null)
|
||||||
|
throw new PKError("You must use a message link to edit messages in DMs.");
|
||||||
|
|
||||||
var recent = await FindRecentMessage(ctx);
|
var recent = await FindRecentMessage(ctx);
|
||||||
if (recent == null)
|
if (recent == null)
|
||||||
throw new PKError("Could not find a recent message to edit.");
|
throw new PKError("Could not find a recent message to edit.");
|
||||||
|
Loading…
Reference in New Issue
Block a user