We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bfa5d4 commit abb69b7Copy full SHA for abb69b7
resources/lib/UnityHTTPD.php
@@ -239,9 +239,6 @@ public static function getPostData(string $key): mixed
239
if (!isset($_POST)) {
240
self::badRequest('$_POST is unset');
241
}
242
- if ($_POST === null) {
243
- self::badRequest('$_POST is null');
244
- }
245
if (!array_key_exists($key, $_POST)) {
246
self::badRequest("\$_POST has no array key '$key'");
247
0 commit comments