diff --git a/modules/system/models/RequestLog.php b/modules/system/models/RequestLog.php index ab93b1191..5b704bf01 100644 --- a/modules/system/models/RequestLog.php +++ b/modules/system/models/RequestLog.php @@ -42,7 +42,7 @@ class RequestLog extends Model } $record = static::firstOrNew([ - 'url' => substr(Request::fullUrl(), 0, 255), + 'url' => substr(Request::fullUrl(), 0, 191), 'status_code' => $statusCode, ]);