Bugfix: Unidirectional Diaspora connect request have to be followers - not sharers

This commit is contained in:
Michael Vogel 2015-10-10 04:56:40 +02:00
parent 26983bafff
commit ab0fbc3a65
1 changed files with 1 additions and 1 deletions

View File

@ -382,7 +382,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) {
if($duplex) if($duplex)
$new_relation = CONTACT_IS_FRIEND; $new_relation = CONTACT_IS_FRIEND;
else else
$new_relation = CONTACT_IS_SHARING; $new_relation = CONTACT_IS_FOLLOWER;
if($new_relation != CONTACT_IS_FOLLOWER) if($new_relation != CONTACT_IS_FOLLOWER)
$writable = 1; $writable = 1;