app.net: Don't create contacts for threads we only complete

This commit is contained in:
Michael Vogel 2014-06-25 19:34:02 +02:00
parent a2dc41e8de
commit 6e298f7e63
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
}