]> git.mxchange.org Git - friendica-addons.git/commitdiff
Tumblr/Bluesky: Avoid problems on first fetch
authorMichael <heluecht@pirati.ca>
Thu, 21 Dec 2023 05:23:38 +0000 (05:23 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 21 Dec 2023 05:23:38 +0000 (05:23 +0000)
bluesky/bluesky.php
tumblr/tumblr.php

index 94d5cb3193246e2717ae419b8a636dd885ee132c..dac95437e24d52ecab5de11e1a55e116bbc557c4 100644 (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) {
index 9b29deb31454df3969e7aeaf9985bf845dfb2597..4d5368b80bb48cd2fc6053bc5985a81daee732ae 100644 (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) {