diff options
author | Friendika <info@friendika.com> | 2011-11-01 14:24:56 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-11-01 14:24:56 -0700 |
commit | ae7425dadb2e8e2911f405631e332965066a916b (patch) | |
tree | f7297ae147a9a983574e7372501e747f63afc371 /include | |
parent | 05eca449c82c9b574321b71864406bab3f926442 (diff) | |
download | volse-hubzilla-ae7425dadb2e8e2911f405631e332965066a916b.tar.gz volse-hubzilla-ae7425dadb2e8e2911f405631e332965066a916b.tar.bz2 volse-hubzilla-ae7425dadb2e8e2911f405631e332965066a916b.zip |
don't send diaspora profile updates in batch mode
Diffstat (limited to 'include')
-rw-r--r-- | include/profile_update.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/profile_update.php b/include/profile_update.php index bd7f678ed..61eaee75d 100644 --- a/include/profile_update.php +++ b/include/profile_update.php @@ -15,8 +15,8 @@ function profile_change() { // if($url && strlen(get_config('system','directory_submit_url'))) // proc_run('php',"include/directory.php","$url"); - $recips = q("SELECT DISTINCT(`batch`), `id`, `name`,`network` FROM `contact` WHERE `network` = '%s' - AND `uid` = %d AND `rel` != %d group by `batch` ORDER BY rand() ", + $recips = q("SELECT `id`,`name`,`network`,`pubkey`,`notify` FROM `contact` WHERE `network` = '%s' + AND `uid` = %d AND `rel` != %d ", dbesc(NETWORK_DIASPORA), intval(local_user()), intval(CONTACT_IS_SHARING) @@ -101,7 +101,7 @@ function profile_change() { logger('profile_change: ' . $msg, LOGGER_ALL); foreach($recips as $recip) { - $msgtosend = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$a->user,$recip,$a->user['prvkey'],null,true))); - add_to_queue($recip['id'],NETWORK_DIASPORA,$msgtosend,true); + $msgtosend = 'xml=' . urlencode(urlencode(diaspora_msg_build($msg,$a->user,$recip,$a->user['prvkey'],$recip['pubkey'],false))); + add_to_queue($recip['id'],NETWORK_DIASPORA,$msgtosend,false); } } |