From 958c94276b653bfc0c7d165f1f90e81b9d6ce5cb Mon Sep 17 00:00:00 2001 From: Fmohican Date: Fri, 29 Oct 2021 21:14:08 +0300 Subject: [PATCH 1/3] #1980 #1980 --- resources/views/livewire/torrent-list-search.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/livewire/torrent-list-search.blade.php b/resources/views/livewire/torrent-list-search.blade.php index a9adc2868e..da109c4b25 100644 --- a/resources/views/livewire/torrent-list-search.blade.php +++ b/resources/views/livewire/torrent-list-search.blade.php @@ -668,7 +668,7 @@ class="torrent-poster-img-small" alt="@lang('torrent.poster')"> igdb_id {{ $torrent->igdb }}
- {{ $meta->rating_count ?? 0 }}/100 + @if(isset($meta->rating)) {{ $meta->rating_count ?? 0 }}/100 @endif
@endif @if ($torrent->category->movie_meta || $torrent->category->tv_meta) @@ -677,7 +677,7 @@ class="torrent-poster-img-small" alt="@lang('torrent.poster')"> igdb_id {{ $torrent->tmdb }}
- {{ $meta->vote_average ?? 0 }}/10 + @if(isset($meta->vote_average)) {{ $meta->vote_average ?? 0 }}/10 @endif @endif From bf461905f40c99c987de79e61d2b415335578040 Mon Sep 17 00:00:00 2001 From: HDVinnie Date: Sat, 30 Oct 2021 09:37:24 -0400 Subject: [PATCH 2/3] Update torrent-list-search.blade.php --- resources/views/livewire/torrent-list-search.blade.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/views/livewire/torrent-list-search.blade.php b/resources/views/livewire/torrent-list-search.blade.php index da109c4b25..abc52dadc5 100644 --- a/resources/views/livewire/torrent-list-search.blade.php +++ b/resources/views/livewire/torrent-list-search.blade.php @@ -668,16 +668,16 @@ class="torrent-poster-img-small" alt="@lang('torrent.poster')"> igdb_id {{ $torrent->igdb }}
- @if(isset($meta->rating)) {{ $meta->rating_count ?? 0 }}/100 @endif + {{ $meta->rating_count ?? 0 }}/100
@endif @if ($torrent->category->movie_meta || $torrent->category->tv_meta) - igdb_id {{ $torrent->tmdb }} + tmdb_id {{ $torrent->tmdb }}
- @if(isset($meta->vote_average)) {{ $meta->vote_average ?? 0 }}/10 @endif + {{ $meta->vote_average ?? 0 }}/10
@endif From 1ae46ee4cc4e53a90bd52428b5054da86e450238 Mon Sep 17 00:00:00 2001 From: HDVinnie Date: Sat, 30 Oct 2021 09:41:11 -0400 Subject: [PATCH 3/3] Update torrent-list-search.blade.php --- resources/views/livewire/torrent-list-search.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/livewire/torrent-list-search.blade.php b/resources/views/livewire/torrent-list-search.blade.php index abc52dadc5..285d6a2d5b 100644 --- a/resources/views/livewire/torrent-list-search.blade.php +++ b/resources/views/livewire/torrent-list-search.blade.php @@ -668,7 +668,7 @@ class="torrent-poster-img-small" alt="@lang('torrent.poster')"> igdb_id {{ $torrent->igdb }}
- {{ $meta->rating_count ?? 0 }}/100 + {{ round($meta->rating ?? 0) }}/100
@endif @if ($torrent->category->movie_meta || $torrent->category->tv_meta)