forked from GNUsocial/gnu-social
Fix to regression for auto-subscribe - was backwards.
This commit is contained in:
parent
6828567ed0
commit
dacd0f3e6d
@ -105,8 +105,8 @@ class Subscription extends Memcached_DataObject
|
||||
|
||||
$auto = new Subscription();
|
||||
|
||||
$auto->subscriber = $subscriber->id;
|
||||
$auto->subscribed = $other->id;
|
||||
$auto->subscriber = $other->id;
|
||||
$auto->subscribed = $subscriber->id;
|
||||
$auto->created = common_sql_now();
|
||||
|
||||
$result = $auto->insert();
|
||||
|
Loading…
Reference in New Issue
Block a user