summaryrefslogtreecommitdiffstats
path: root/EssentialsUpdate/src/com/earth2me/essentials/update/chat/AbstractFileCommand.java
diff options
context:
space:
mode:
Diffstat (limited to 'EssentialsUpdate/src/com/earth2me/essentials/update/chat/AbstractFileCommand.java')
-rw-r--r--EssentialsUpdate/src/com/earth2me/essentials/update/chat/AbstractFileCommand.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/EssentialsUpdate/src/com/earth2me/essentials/update/chat/AbstractFileCommand.java b/EssentialsUpdate/src/com/earth2me/essentials/update/chat/AbstractFileCommand.java
index 12aa3326e..58bbb25b0 100644
--- a/EssentialsUpdate/src/com/earth2me/essentials/update/chat/AbstractFileCommand.java
+++ b/EssentialsUpdate/src/com/earth2me/essentials/update/chat/AbstractFileCommand.java
@@ -58,9 +58,10 @@ public abstract class AbstractFileCommand implements Command
protected String uploadToPastie(final StringBuilder input) throws IOException
{
- if (input.length() > 10000)
+ if (input.length() > 15000)
{
- input.delete(0, input.length() - 10000);
+ input.delete(0, input.length() - 15000);
+ input.append("## Cropped after 15000 bytes");
}
final PastieUpload pastie = new PastieUpload();
return pastie.send(input.toString());