Revert "feat: remove 2000-character limit for proxied messages"

This reverts commit 7cc2aab1f0.
This commit is contained in:
spiral 2022-01-21 18:23:58 -05:00
parent 31a129dabf
commit ddbf0e8691
No known key found for this signature in database
GPG key ID: A6059F0CA0E1BD31
3 changed files with 8 additions and 1 deletions

View file

@ -56,6 +56,9 @@ public class ProxiedMessage
var newContent = ctx.RemainderOrNull().NormalizeLineEndSpacing();
if (newContent.Length > 2000)
throw new PKError("PluralKit cannot proxy messages over 2000 characters in length.");
var originalMsg = await _rest.GetMessageOrNull(msg.Message.Channel, msg.Message.Mid);
if (originalMsg == null)
throw new PKError("Could not edit message.");