more work on channel sync

This commit is contained in:
friendica
2013-06-26 17:31:02 -07:00
parent 156cf592ee
commit b9466941e7
4 changed files with 41 additions and 8 deletions

View File

@@ -874,8 +874,16 @@ function zot_import($arr) {
$result = process_profile_delivery($i['notify']['sender'],$arr,$deliveries);
}
elseif($i['message']['type'] === 'channel_sync') {
// $arr = get_channelsync_elements($i['message']);
$arr = $i['message'];
logger('Channel sync received: ' . print_r($arr,true), LOGGER_DATA);
logger('Channel sync recipients: ' . print_r($deliveries,true), LOGGER_DATA);
// $result = process_channelsync_delivery($i['notify']['sender'],$arr,$deliveries);
}
}
if($result)
$return = array_merge($return,$result);