Merge pull request #5861 from pixelfed/staging

Staging
pull/5871/head
daniel 6 months ago committed by GitHub
commit bbb46a9ce8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -53,6 +53,7 @@
- Update Profile component, rewrite local profile urls ([dfbccaa19](https://github.com/pixelfed/pixelfed/commit/dfbccaa19))
- Update AccountPostCountStatUpdate, fix memory leak ([134eb6324](https://github.com/pixelfed/pixelfed/commit/134eb6324))
- Update snowflake config, allow custom datacenter/worker ids ([806e210f1](https://github.com/pixelfed/pixelfed/commit/806e210f1))
- Update ApiV1Controller, return empty statuses feed for private accounts instead of 403 response ([cce657d9c](https://github.com/pixelfed/pixelfed/commit/cce657d9c))
- ([](https://github.com/pixelfed/pixelfed/commit/))
## [v0.12.4 (2024-11-08)](https://github.com/pixelfed/pixelfed/compare/v0.12.4...dev)

@ -747,7 +747,7 @@ class ApiV1Controller extends Controller
} elseif ($profile['locked']) {
$following = FollowerService::follows($pid, $profile['id']);
if (! $following) {
return response('', 403);
return response()->json([]);
}
$visibility = ['public', 'unlisted', 'private'];
} else {

Loading…
Cancel
Save