Merge pull request 'Tumblr/Bluesky: Avoid problems on first fetch' (#1452) from heluecht/friendica-addons:first-fetch into 2023.09-rc

Reviewed-on: friendica/friendica-addons#1452
This commit is contained in:
Hypolite Petovan 2023-12-21 13:45:24 +01:00
commit b87588e371
2 changed files with 2 additions and 2 deletions

View File

@ -463,7 +463,7 @@ function bluesky_jot_nets(array &$jotnets_fields)
function bluesky_cron()
{
$last = DI::keyValue()->get('bluesky_last_poll');
$last = (int)DI::keyValue()->get('bluesky_last_poll');
$poll_interval = intval(DI::config()->get('bluesky', 'poll_interval'));
if (!$poll_interval) {

View File

@ -406,7 +406,7 @@ function tumblr_settings_post(array &$b)
function tumblr_cron()
{
$last = DI::keyValue()->get('tumblr_last_poll');
$last = (int)DI::keyValue()->get('tumblr_last_poll');
$poll_interval = intval(DI::config()->get('tumblr', 'poll_interval'));
if (!$poll_interval) {