From: Michael Vogel Date: Wed, 25 Jun 2014 17:34:02 +0000 (+0200) Subject: app.net: Don't create contacts for threads we only complete X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6e298f7e63fac9bd6454d8bef5dd753a9cfee814;p=friendica-addons.git app.net: Don't create contacts for threads we only complete --- diff --git a/appnet/appnet.php b/appnet/appnet.php index acbd5ce5..4bf72da5 100644 --- a/appnet/appnet.php +++ b/appnet/appnet.php @@ -851,7 +851,7 @@ function appnet_createpost($a, $uid, $post, $me, $user, $ownid, $createuser, $th } $thread = array_reverse($thread); foreach ($thread AS $tpost) { - $threadpost = appnet_createpost($a, $uid, $tpost, $me, $user, $ownid, $createuser, false); + $threadpost = appnet_createpost($a, $uid, $tpost, $me, $user, $ownid, false, false); $item = item_store($threadpost); } }