1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-02-25 08:52:40 +01:00

Crop after 15KB and add a note, that it's cropped by the upload.

This commit is contained in:
snowleo 2011-10-27 00:06:15 +02:00
parent 19dfef1a4f
commit 1de5cb6dbd

View File

@ -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());