diff --git a/src/Handler/ContentRangeUploadHandler.php b/src/Handler/ContentRangeUploadHandler.php index d2b2e3a..9442d47 100644 --- a/src/Handler/ContentRangeUploadHandler.php +++ b/src/Handler/ContentRangeUploadHandler.php @@ -67,7 +67,7 @@ public function __construct(Request $request, $file, $config) { parent::__construct($request, $file, $config); - $contentRange = $this->request->header(self::CONTENT_RANGE_INDEX); + $contentRange = $this->request->header(self::CONTENT_RANGE_INDEX, ''); $this->tryToParseContentRange($contentRange); }