aboutsummaryrefslogtreecommitdiffstats
path: root/include/zot.php
diff options
context:
space:
mode:
authorAndrew Manning <tamanning@zoho.com>2016-06-15 19:15:47 -0400
committerAndrew Manning <tamanning@zoho.com>2016-06-15 19:15:47 -0400
commitf2dda646ecf1d11bf88c085d1174d3c147f799b1 (patch)
treec86f59fcca3a84413d77c325be433c4c5ea862e2 /include/zot.php
parent98484f0def82493ff9d45405dadefd141a1b32ba (diff)
parent47fc0c79588d55a207dc39ae8062ec55382e2564 (diff)
downloadvolse-hubzilla-f2dda646ecf1d11bf88c085d1174d3c147f799b1.tar.gz
volse-hubzilla-f2dda646ecf1d11bf88c085d1174d3c147f799b1.tar.bz2
volse-hubzilla-f2dda646ecf1d11bf88c085d1174d3c147f799b1.zip
Merge remote-tracking branch 'upstream/dev' into dev
Diffstat (limited to 'include/zot.php')
-rw-r--r--include/zot.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/zot.php b/include/zot.php
index af79b5723..043139e2f 100644
--- a/include/zot.php
+++ b/include/zot.php
@@ -538,6 +538,16 @@ function zot_refresh($them, $channel = null, $force = false) {
Zotlabs\Daemon\Master::Summon(array('Onepoll',$new_connection[0]['abook_id']));
}
+
+ /** If there is a default group for this channel, add this connection to it */
+ $default_group = $channel['channel_default_group'];
+ if($default_group) {
+ require_once('include/group.php');
+ $g = group_rec_byhash($channel['channel_id'],$default_group);
+ if($g)
+ group_add_member($channel['channel_id'],'',$x['hash'],$g['id']);
+ }
+
unset($new_connection[0]['abook_id']);
unset($new_connection[0]['abook_account']);
unset($new_connection[0]['abook_channel']);