aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Lib
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2023-08-14 09:21:45 +0000
committerMario <mario@mariovavti.com>2023-08-14 09:21:45 +0000
commita5a1bbf5d789f19fcb007802eee5e9a29abb72e7 (patch)
tree10e7fc2826f6ec6238196bb9224c6cf155c84212 /Zotlabs/Lib
parentc4af4e3297f09aa0c6f8ed8e21d6f54729ebfc4d (diff)
downloadvolse-hubzilla-a5a1bbf5d789f19fcb007802eee5e9a29abb72e7.tar.gz
volse-hubzilla-a5a1bbf5d789f19fcb007802eee5e9a29abb72e7.tar.bz2
volse-hubzilla-a5a1bbf5d789f19fcb007802eee5e9a29abb72e7.zip
move profile photo fetching to background
Diffstat (limited to 'Zotlabs/Lib')
-rw-r--r--Zotlabs/Lib/Activity.php10
1 files changed, 1 insertions, 9 deletions
diff --git a/Zotlabs/Lib/Activity.php b/Zotlabs/Lib/Activity.php
index 992ade200..2741cc79a 100644
--- a/Zotlabs/Lib/Activity.php
+++ b/Zotlabs/Lib/Activity.php
@@ -1846,15 +1846,7 @@ class Activity {
}
}
- $photos = import_xchan_photo($icon, $url);
- q("update xchan set xchan_photo_date = '%s', xchan_photo_l = '%s', xchan_photo_m = '%s', xchan_photo_s = '%s', xchan_photo_mimetype = '%s' where xchan_hash = '%s'",
- dbescdate(datetime_convert('UTC', 'UTC', $photos[5])),
- dbesc($photos[0]),
- dbesc($photos[1]),
- dbesc($photos[2]),
- dbesc($photos[3]),
- dbesc($url)
- );
+ Master::Summon(['Xchan_photo', bin2hex($icon), bin2hex($url)]);
}