Fix: Integrity constraint violation: 1052 Column 'id' in where clause is ambiguous (#3772)

This commit is contained in:
Rafael Horvat 2023-03-21 11:32:23 +01:00 committed by GitHub
parent 8372363cc2
commit 85b63681ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -103,7 +103,7 @@ class UpdateMentionsMetadataWhenVisible
$post->unsetRelation('mentionsGroups');
$users = User::whereHas('groups', function ($query) use ($mentioned) {
$query->whereIn('id', $mentioned);
$query->whereIn('groups.id', $mentioned);
})
->get()
->filter(function (User $user) use ($post) {