Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
fmohican authored Oct 29, 2021
1 parent 510b373 commit 958c942
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/livewire/torrent-list-search.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ class="torrent-poster-img-small" alt="@lang('torrent.poster')">
<span class='badge-extra'>
<img src="{{ url('img/igdb.png') }}" alt="igdb_id" style="margin-left: -5px;" width="24px" height="24px"> {{ $torrent->igdb }}
<br>
<span class="{{ \rating_color(round($meta->rating) ?? 'text-white') }}"><i class="{{ config('other.font-awesome') }} fa-star-half-alt"></i> {{ $meta->rating_count ?? 0 }}/100 </span>
@if(isset($meta->rating))<span class="{{ \rating_color(round($meta->rating) ?? 'text-white') }}"><i class="{{ config('other.font-awesome') }} fa-star-half-alt"></i> {{ $meta->rating_count ?? 0 }}/100 </span>@endif
</span>
@endif
@if ($torrent->category->movie_meta || $torrent->category->tv_meta)
Expand All @@ -677,7 +677,7 @@ class="torrent-poster-img-small" alt="@lang('torrent.poster')">
<img src="{{ url('img/tmdb_small.png') }}" alt="igdb_id" style="margin-left: -5px;" width="24px" height="24px"> {{ $torrent->tmdb }}
</a>
<br>
<span class="{{ \rating_color($meta->vote_average ?? 'text-white') }}"><i class="{{ config('other.font-awesome') }} fa-star-half-alt"></i> {{ $meta->vote_average ?? 0 }}/10 </span>
@if(isset($meta->vote_average))<span class="{{ \rating_color($meta->vote_average ?? 'text-white') }}"><i class="{{ config('other.font-awesome') }} fa-star-half-alt"></i> {{ $meta->vote_average ?? 0 }}/10 </span>@endif
</span>
@endif
</td>
Expand Down

0 comments on commit 958c942

Please sign in to comment.