aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Profile_photo.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-01-02 22:14:31 +0100
committerMario Vavti <mario@mariovavti.com>2018-01-02 22:14:31 +0100
commitf826c09abc48a522c1a27b44a3fda1e337d90a1a (patch)
treef53302b072bae510e4d07d72c89b4238614df458 /Zotlabs/Module/Profile_photo.php
parente418a6b3d498cb237bd8f6dd01f40fe57d4a868d (diff)
parent3bd7133ba32d758df935a566c45515a530b35538 (diff)
downloadvolse-hubzilla-f826c09abc48a522c1a27b44a3fda1e337d90a1a.tar.gz
volse-hubzilla-f826c09abc48a522c1a27b44a3fda1e337d90a1a.tar.bz2
volse-hubzilla-f826c09abc48a522c1a27b44a3fda1e337d90a1a.zip
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'Zotlabs/Module/Profile_photo.php')
-rw-r--r--Zotlabs/Module/Profile_photo.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/Zotlabs/Module/Profile_photo.php b/Zotlabs/Module/Profile_photo.php
index 411518c61..45a606d5f 100644
--- a/Zotlabs/Module/Profile_photo.php
+++ b/Zotlabs/Module/Profile_photo.php
@@ -179,7 +179,10 @@ class Profile_photo extends \Zotlabs\Web\Controller {
);
}
- profiles_build_sync(local_channel());
+ // set $send to false in profiles_build_sync() to return the data
+ // so that we only send one sync packet.
+
+ $sync_profiles = profiles_build_sync(local_channel(),false);
// We'll set the updated profile-photo timestamp even if it isn't the default profile,
// so that browsers will do a cache update unconditionally
@@ -201,7 +204,7 @@ class Profile_photo extends \Zotlabs\Web\Controller {
$sync = attach_export_data($channel,$base_image['resource_id']);
if($sync)
- build_sync_packet($channel['channel_id'],array('file' => array($sync)));
+ build_sync_packet($channel['channel_id'],array('file' => array($sync), 'profile' => $sync_profiles));
// Similarly, tell the nav bar to bypass the cache and update the avatar image.