diff --git a/app/Http/Controllers/InternalApiController.php b/app/Http/Controllers/InternalApiController.php
index 9b1b3af4e..d724be0c1 100644
--- a/app/Http/Controllers/InternalApiController.php
+++ b/app/Http/Controllers/InternalApiController.php
@@ -146,9 +146,6 @@ class InternalApiController extends Controller
$posts = Status::select('id', 'caption', 'profile_id')
->whereHas('media')
- ->whereHas('profile', function($q) {
- $q->where('is_private', false);
- })
->whereIsNsfw(false)
->whereVisibility('public')
->whereNotIn('profile_id', $following)
diff --git a/resources/views/layouts/partial/nav.blade.php b/resources/views/layouts/partial/nav.blade.php
index 26a7af299..2710e8bb0 100644
--- a/resources/views/layouts/partial/nav.blade.php
+++ b/resources/views/layouts/partial/nav.blade.php
@@ -19,10 +19,13 @@
{{ __('Login') }}
{{ __('Register') }}
@else
-
+
-
+
+
+
+ {{--
@@ -33,7 +36,7 @@
{{--
-
--}}
+
-}}
@@ -41,8 +44,8 @@
-
-
+ --}}
+
diff --git a/routes/web.php b/routes/web.php
index c7baa739e..98282636f 100644
--- a/routes/web.php
+++ b/routes/web.php
@@ -119,7 +119,7 @@ Route::domain(config('pixelfed.domain.app'))->middleware(['validemail', 'twofact
Route::get('email', 'SettingsController@email')->name('settings.email');
Route::get('notifications', 'SettingsController@notifications')->name('settings.notifications');
Route::get('privacy', 'SettingsController@privacy')->name('settings.privacy');
- Route::post('privacy', 'SettingsController@privacyStore')->middleware('throttle:25,1440');
+ Route::post('privacy', 'SettingsController@privacyStore')->middleware('throttle:50,1440');
Route::get('privacy/muted-users', 'SettingsController@mutedUsers')->name('settings.privacy.muted-users');
Route::post('privacy/muted-users', 'SettingsController@mutedUsersUpdate')->middleware('throttle:100,1440');
Route::get('privacy/blocked-users', 'SettingsController@blockedUsers')->name('settings.privacy.blocked-users');