1
0
Fork 0

Performance: Avoid queries where there is no media or category

This commit is contained in:
Michael 2022-05-16 17:06:58 +00:00
commit 4daae255d8
6 changed files with 28 additions and 6 deletions

View file

@ -93,7 +93,7 @@ class Item
$uid = $item['uid'] ?: $uid;
if (!Post\Category::existsForURIId($item['uri-id'], $uid)) {
if (empty($item['has-categories'])) {
return [$categories, $folders];
}