Browse Source

fix zero key validation

main
ghost 12 months ago
parent
commit
610dcefff8
  1. 2
      kevacoin/get.php

2
kevacoin/get.php

@ -93,7 +93,7 @@ foreach ( @@ -93,7 +93,7 @@ foreach (
)
) as $piece)
{
if (empty($piece->key) || empty($piece->value))
if (!isset($piece->key) || !isset($piece->value))
{
exit(
'please wait for all pieces sending complete!'

Loading…
Cancel
Save