mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
Fixed incorrect []Activity -> array conversion
This commit is contained in:
parent
d4df18098f
commit
627720c5af
@ -122,7 +122,7 @@ class ActivityService
|
|||||||
->where('user_id', '=', $user->id)
|
->where('user_id', '=', $user->id)
|
||||||
->skip($count * $page)
|
->skip($count * $page)
|
||||||
->take($count)
|
->take($count)
|
||||||
->get()->toArray();
|
->get();
|
||||||
|
|
||||||
return $this->filterSimilar($activityList);
|
return $this->filterSimilar($activityList);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user