diff options
author | zotlabs <mike@macgirvin.com> | 2017-12-31 14:45:42 -0800 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-01-03 12:16:05 +0100 |
commit | 301e5383c7d524ca7cbcfd8e65b02f7b3591fc75 (patch) | |
tree | 0867c6a5e37c40f1ed222335f7ac43e8839a8be8 /Zotlabs | |
parent | 66d0b4d0d57d98540e36e3a9f6fa5ccd84ea5ff9 (diff) | |
download | volse-hubzilla-301e5383c7d524ca7cbcfd8e65b02f7b3591fc75.tar.gz volse-hubzilla-301e5383c7d524ca7cbcfd8e65b02f7b3591fc75.tar.bz2 volse-hubzilla-301e5383c7d524ca7cbcfd8e65b02f7b3591fc75.zip |
this should finish up hubzilla issue #113
Diffstat (limited to 'Zotlabs')
-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. |