1
0
Fork 0

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.
This commit is contained in:
Brayd 2023-01-19 21:43:57 +01:00 committed by GitHub
parent b279e2aac0
commit e3ed684f98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.'
);
}