From a2292fe25108bb1f9fb73908aeb80fca0af76b21 Mon Sep 17 00:00:00 2001 From: Artur Moczulski Date: Mon, 17 Dec 2018 03:44:37 +0000 Subject: [PATCH] #424: match MAX_PAYLOAD_SIZE with the latest documentation --- src/Truncation/Truncation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Truncation/Truncation.php b/src/Truncation/Truncation.php index 2840a7a7..4793bff3 100644 --- a/src/Truncation/Truncation.php +++ b/src/Truncation/Truncation.php @@ -5,7 +5,7 @@ class Truncation { - const MAX_PAYLOAD_SIZE = 524288; // 512 * 1024 + const MAX_PAYLOAD_SIZE = 131072; // 128 * 1024 protected static $truncationStrategies = array( "Rollbar\Truncation\FramesStrategy",