Browse Source

add notice on pending pieces available

main
ghost 10 months ago
parent
commit
f67240ccf2
  1. 8
      kevacoin/get.php

8
kevacoin/get.php

@ -83,6 +83,7 @@ if (empty($clitoris->file->name)) @@ -83,6 +83,7 @@ if (empty($clitoris->file->name))
// Merge content data
$pieces = [];
foreach (
(array)
_exec(
$argv[1],
sprintf(
@ -92,6 +93,13 @@ foreach ( @@ -92,6 +93,13 @@ foreach (
)
) as $piece)
{
if (empty($piece->key) || empty($piece->value))
{
exit(
'please wait for all pieces sending complete!'
);
}
$pieces[$piece->key] = $piece->value;
print_r(

Loading…
Cancel
Save