diff --git a/app/Http/Controllers/InternalApiController.php b/app/Http/Controllers/InternalApiController.php index 788279a8d..acabcb0a7 100644 --- a/app/Http/Controllers/InternalApiController.php +++ b/app/Http/Controllers/InternalApiController.php @@ -117,6 +117,7 @@ class InternalApiController extends Controller ->whereIsNsfw(false) ->whereVisibility('public') ->whereNotIn('profile_id', $following) + ->whereDate('created_at', '>', now()->subMonths(3)) ->with('media') ->inRandomOrder() ->take(36)