Skip to content

Commit

Permalink
fixed snipe#12095
Browse files Browse the repository at this point in the history
  • Loading branch information
deloz committed Nov 15, 2022
1 parent b4ff07c commit 2bfb4be
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

{{ trans('mail.the_following_item') }}

@if ($item->getImageUrl())
<center><img src="{{ app\Models\Setting::getSettings()->show_images_in_email =='1' && $item->getImageUrl() }}" alt="Asset" style="max-width: 570px;"></center>
@if (($snipeSettings->show_images_in_email =='1') && $item->getImageUrl())
<center><img src="{{ $item->getImageUrl() }}" alt="Asset" style="max-width: 570px;"></center>
@endif

@component('mail::table')
Expand Down

0 comments on commit 2bfb4be

Please sign in to comment.