Merge pull request #3169 from annando/bugfix-delete-spool

We have to delete spool files after posting in any case
This commit is contained in:
Tobias Diekershoff 2017-02-17 08:04:22 +01:00 committed by GitHub
commit e647aa8846
1 changed files with 8 additions and 2 deletions

View File

@ -35,13 +35,19 @@ function spool_post_run($argv, $argc) {
continue;
}
$arr = json_decode(file_get_contents($fullfile), true);
// If it isn't an array then it is no spool file
if (!is_array($arr)) {
continue;
}
$result = item_store($arr);
if ($result == 0) {
// Skip if it doesn't seem to be an item array
if (!isset($arr['uid']) AND !isset($arr['uri']) AND !isset($arr['network'])) {
continue;
}
$result = item_store($arr);
logger("Spool file ".$file." stored: ".$result, LOGGER_DEBUG);
unlink($fullfile);
}