1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-06-17 10:22:03 +03:00

Merge branch 'master' into dark-mode

This commit is contained in:
Dan Brown
2020-04-11 14:22:41 +01:00

View File

@ -122,7 +122,7 @@ class ActivityService
->where('user_id', '=', $user->id)
->skip($count * $page)
->take($count)
->get()->toArray();
->get();
return $this->filterSimilar($activityList);
}