You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
preg_match(): Passing null to parameter #2 ($subject) of type string is deprecated in /var/www/instream-project-test.impactify.dev/build-9d9fc6b6/vendor/pion/laravel-chunk-upload/src/Handler/ContentRangeUploadHandler.php on line 113
What steps will reproduce the problem?
Enable deprecated notice log on php
What is the expected result?
No deprecated
What do you get instead?
preg_match(): Passing null to parameter #2 ($subject) of type string is deprecated in /var/www/instream-project-test.impactify.dev/build-9d9fc6b6/vendor/pion/laravel-chunk-upload/src/Handler/ContentRangeUploadHandler.php on line 113
Additional info
To resolv issue please change in
/vendor/pion/laravel-chunk-upload/src/Handler/ContentRangeUploadHandler.php
Line 70 :
$contentRange = $this->request->header(self::CONTENT_RANGE_INDEX);
To : $contentRange = $this->request->header(self::CONTENT_RANGE_INDEX, '');
The text was updated successfully, but these errors were encountered: