This commit is contained in:
James Cole 2020-10-01 07:31:08 +02:00
parent c01345468d
commit 8767bad61e
No known key found for this signature in database
GPG Key ID: B5669F9493CDE38D

View File

@ -194,10 +194,7 @@ trait RenderPartialViews
$categoryRepository = app(CategoryRepositoryInterface::class);
$category = $categoryRepository->findNull((int) $attributes['categoryId']);
$journals = $popupHelper->byCategory($category, $attributes);
if (null === $category) {
return 'This is an unknown category. Apologies.';
}
// @codeCoverageIgnoreStart
try {
$view = view('popup.report.category-entry', compact('journals', 'category'))->render();
} catch (Throwable $e) {
@ -205,8 +202,6 @@ trait RenderPartialViews
$view = 'Firefly III could not render the view. Please see the log files.';
}
// @codeCoverageIgnoreEnd
return $view;
}