Make app compatible with NC code checker

Signed-off-by: Christian Wolf <github@christianwolf.email>
This commit is contained in:
Christian Wolf 2020-12-21 11:07:00 +01:00
Родитель c538274189
Коммит d725a091a1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 9FC3120E932F73F1
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1077,7 +1077,7 @@ class RecipeService {
$image_file = null;
$image_filename = $size . '.jpg';
if (($size == 'thumb16' || $size == 'thumb') && !$recipe_folder->nodeExists($image_filename)) {
if (($size === 'thumb16' || $size === 'thumb') && !$recipe_folder->nodeExists($image_filename)) {
if ($recipe_folder->nodeExists('full.jpg')) {
// Write the thumbnail
$recipe_full_image_file = $recipe_folder->get('full.jpg');