mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 16:23:16 +00:00
commit
ca8c62ab58
2 changed files with 3 additions and 2 deletions
|
@ -41,6 +41,7 @@
|
||||||
- Updated Status view, added ```video``` open graph tag support ([#1799](https://github.com/pixelfed/pixelfed/pull/1799))
|
- Updated Status view, added ```video``` open graph tag support ([#1799](https://github.com/pixelfed/pixelfed/pull/1799))
|
||||||
- Updated AccountTransformer, added ```local``` attribute ([d2a90f11](https://github.com/pixelfed/pixelfed/commit/d2a90f11))
|
- Updated AccountTransformer, added ```local``` attribute ([d2a90f11](https://github.com/pixelfed/pixelfed/commit/d2a90f11))
|
||||||
- Updated Laravel framework from v5.8 to v6.x ([3aff6de33](https://github.com/pixelfed/pixelfed/commit/3aff6de33))
|
- Updated Laravel framework from v5.8 to v6.x ([3aff6de33](https://github.com/pixelfed/pixelfed/commit/3aff6de33))
|
||||||
|
- Updated FollowerController to fix bug affecting private profiles ([a429d961](https://github.com/pixelfed/pixelfed/commit/a429d961))
|
||||||
|
|
||||||
## Deprecated
|
## Deprecated
|
||||||
|
|
||||||
|
|
|
@ -53,7 +53,7 @@ class FollowerController extends Controller
|
||||||
|
|
||||||
$isFollowing = Follower::whereProfileId($user->id)->whereFollowingId($target->id)->exists();
|
$isFollowing = Follower::whereProfileId($user->id)->whereFollowingId($target->id)->exists();
|
||||||
|
|
||||||
if($private == true && $isFollowing == 0 && $remote == true) {
|
if($private == true && $isFollowing == 0) {
|
||||||
if($user->following()->count() >= Follower::MAX_FOLLOWING) {
|
if($user->following()->count() >= Follower::MAX_FOLLOWING) {
|
||||||
abort(400, 'You cannot follow more than ' . Follower::MAX_FOLLOWING . ' accounts');
|
abort(400, 'You cannot follow more than ' . Follower::MAX_FOLLOWING . ' accounts');
|
||||||
}
|
}
|
||||||
|
@ -69,7 +69,7 @@ class FollowerController extends Controller
|
||||||
if($remote == true && config('federation.activitypub.remoteFollow') == true) {
|
if($remote == true && config('federation.activitypub.remoteFollow') == true) {
|
||||||
$this->sendFollow($user, $target);
|
$this->sendFollow($user, $target);
|
||||||
}
|
}
|
||||||
} elseif ($isFollowing == 0) {
|
} elseif ($private == false && $isFollowing == 0) {
|
||||||
if($user->following()->count() >= Follower::MAX_FOLLOWING) {
|
if($user->following()->count() >= Follower::MAX_FOLLOWING) {
|
||||||
abort(400, 'You cannot follow more than ' . Follower::MAX_FOLLOWING . ' accounts');
|
abort(400, 'You cannot follow more than ' . Follower::MAX_FOLLOWING . ' accounts');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue