mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-15 18:20:11 +00:00
Merge pull request #354 from spiralw/patch-2
add temporary info message about increased message character limit
This commit is contained in:
commit
6409c76f10
1 changed files with 3 additions and 0 deletions
|
|
@ -54,6 +54,9 @@ namespace PluralKit.Bot
|
||||||
if (!ShouldProxy(channel, message, ctx))
|
if (!ShouldProxy(channel, message, ctx))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
// this is hopefully temporary, so not putting it into a separate method
|
||||||
|
if (message.Content != null && message.Content.Length > 2000) throw new PKError("PluralKit cannot proxy messages over 2000 characters in length.");
|
||||||
|
|
||||||
// Fetch members and try to match to a specific member
|
// Fetch members and try to match to a specific member
|
||||||
await using var conn = await _db.Obtain();
|
await using var conn = await _db.Obtain();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue