mirror of
https://github.com/flarum/core.git
synced 2025-08-03 15:07:53 +02:00
Fix: Integrity constraint violation: 1052 Column 'id' in where clause is ambiguous (#3772)
This commit is contained in:
@@ -103,7 +103,7 @@ class UpdateMentionsMetadataWhenVisible
|
|||||||
$post->unsetRelation('mentionsGroups');
|
$post->unsetRelation('mentionsGroups');
|
||||||
|
|
||||||
$users = User::whereHas('groups', function ($query) use ($mentioned) {
|
$users = User::whereHas('groups', function ($query) use ($mentioned) {
|
||||||
$query->whereIn('id', $mentioned);
|
$query->whereIn('groups.id', $mentioned);
|
||||||
})
|
})
|
||||||
->get()
|
->get()
|
||||||
->filter(function (User $user) use ($post) {
|
->filter(function (User $user) use ($post) {
|
||||||
|
Reference in New Issue
Block a user