Don't set the pconfig values on manual mode

This commit is contained in:
Michael 2021-08-03 05:39:04 +00:00
parent 37d5bc1a51
commit ec3eead034
2 changed files with 4 additions and 5 deletions

View file

@ -601,7 +601,9 @@ class Feed
}
$publish_at = date(DateTimeFormat::MYSQL, $publish_time);
Post\Delayed::add($posting['item']['uri'], $posting['item'], $posting['notify'], false, $publish_at, $posting['taglist'], $posting['attachments']);
if (Post\Delayed::add($posting['item']['uri'], $posting['item'], $posting['notify'], false, $publish_at, $posting['taglist'], $posting['attachments'])) {
DI::pConfig()->set($item['uid'], 'system', 'last_publish', $publish_time);
}
}
}