aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib/Activity.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-08-30 18:03:54 +0000
committerMario <mario@mariovavti.com>2021-08-30 18:03:54 +0000
commite20a2752d65d16322784622978839f701f475475 (patch)
tree11e2c62e0ad7e1dab2b5e812709939723f119aa0 /Zotlabs/Lib/Activity.php
parente25558e24d8758b788fec7873431492f965d694d (diff)
downloadvolse-hubzilla-e20a2752d65d16322784622978839f701f475475.tar.gz
volse-hubzilla-e20a2752d65d16322784622978839f701f475475.tar.bz2
volse-hubzilla-e20a2752d65d16322784622978839f701f475475.zip
add an optional force flag to actor_store()
Diffstat (limited to 'Zotlabs/Lib/Activity.php')
-rw-r--r--Zotlabs/Lib/Activity.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php
index 3e0b067d9..4f63b31da 100644
--- a/Zotlabs/Lib/Activity.php
+++ b/Zotlabs/Lib/Activity.php
@@ -1531,7 +1531,7 @@ class Activity {
return;
}
- static function actor_store($url, $person_obj) {
+ static function actor_store($url, $person_obj, $force = false) {
if (!is_array($person_obj)) {
return;
@@ -1641,7 +1641,7 @@ class Activity {
// Record exists. Cache existing records for one week at most
// then refetch to catch updated profile photos, names, etc.
$d = datetime_convert('UTC', 'UTC', 'now - 3 days');
- if($r[0]['hubloc_updated'] > $d) {
+ if($r[0]['hubloc_updated'] > $d && !$force) {
return;
}