diff options
author | zotlabs <mike@macgirvin.com> | 2017-12-31 14:45:42 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-12-31 14:45:42 -0800 |
commit | ce38350e003cc7c8925f2fe3054bc7fb277e29a0 (patch) | |
tree | dcbb59a4692f70b11356a70c5b454cc2d5800ae1 /Zotlabs/Module | |
parent | 45923f408fcbb10f469c6cd654c696d1b7da70a1 (diff) | |
download | volse-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')
-rw-r--r-- | Zotlabs/Module/Profile_photo.php | 7 |
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. |