aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Profile_photo.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-12-31 14:45:42 -0800
committerzotlabs <mike@macgirvin.com>2017-12-31 14:45:42 -0800
commitce38350e003cc7c8925f2fe3054bc7fb277e29a0 (patch)
treedcbb59a4692f70b11356a70c5b454cc2d5800ae1 /Zotlabs/Module/Profile_photo.php
parent45923f408fcbb10f469c6cd654c696d1b7da70a1 (diff)
downloadvolse-hubzilla-ce38350e003cc7c8925f2fe3054bc7fb277e29a0.tar.gz
volse-hubzilla-ce38350e003cc7c8925f2fe3054bc7fb277e29a0.tar.bz2
volse-hubzilla-ce38350e003cc7c8925f2fe3054bc7fb277e29a0.zip
this should finish up hubzilla issue #113
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.