From e3ed684f985d804b3a59d42c445c112ca8c6323b Mon Sep 17 00:00:00 2001 From: Brayd <116094473+br4yd@users.noreply.github.com> Date: Thu, 19 Jan 2023 21:43:57 +0100 Subject: [PATCH] Minor text change Just a minor text change. The user should be adressed by simply using "you". Otherwise a user could think it's an error that just happened randomly so they retry. By addressing them with "you" it can make this message a bit more clear. --- app/Http/Controllers/BookmarkController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/BookmarkController.php b/app/Http/Controllers/BookmarkController.php index 59ffeab36..f5f59457b 100644 --- a/app/Http/Controllers/BookmarkController.php +++ b/app/Http/Controllers/BookmarkController.php @@ -31,7 +31,7 @@ class BookmarkController extends Controller abort_if( $profile->id !== $status->profile_id && !FollowerService::follows($profile->id, $status->profile_id), 404, - 'Error: Cannot bookmark private posts from accounts you do not follow.' + 'Error: You cannot bookmark private posts from accounts you do not follow.' ); }