mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 01:15:05 +00:00
Fix view show to handle "unknown name" on cast.
Update UnRar x64 for Windows 6.22 → 6.23
This commit is contained in:
parent
c950fcb686
commit
6a819f0730
3 changed files with 8 additions and 2 deletions
|
@ -1,4 +1,10 @@
|
||||||
### 3.29.6 (2023-09-06 00:54:00 UTC)
|
### 3.29.7 (2023-09-06 09:40:00 UTC)
|
||||||
|
|
||||||
|
* Fix view show to handle "unknown name" on cast
|
||||||
|
* Update UnRar x64 for Windows 6.22 to 6.23
|
||||||
|
|
||||||
|
|
||||||
|
### 3.29.6 (2023-09-06 00:54:00 UTC)
|
||||||
|
|
||||||
* Fix banner url validation for TheTVDb api v3 lib
|
* Fix banner url validation for TheTVDb api v3 lib
|
||||||
* Fix mock data for CI tests
|
* Fix mock data for CI tests
|
||||||
|
|
|
@ -378,7 +378,7 @@ def param(visible=True, rid=None, cache_person=None, cache_char=None, person=Non
|
||||||
<div class="cast-panel glide__track" data-glide-el="track">
|
<div class="cast-panel glide__track" data-glide-el="track">
|
||||||
<ul class="glide__slides">
|
<ul class="glide__slides">
|
||||||
#for $cur_cast in $cast['1st'] + $cast['2nd']
|
#for $cur_cast in $cast['1st'] + $cast['2nd']
|
||||||
#set $by_people = [] if not $cur_cast.person else [$cur_person.name for $cur_person in $cur_cast.person]
|
#set $by_people = [] if not $cur_cast.person else [$cur_person.name or 'unknown name' for $cur_person in $cur_cast.person]
|
||||||
#set $by_people = ', '.join($by_people if 2 > len($by_people) else $by_people[0:-1] + ['and ' + $by_people[-1]])
|
#set $by_people = ', '.join($by_people if 2 > len($by_people) else $by_people[0:-1] + ['and ' + $by_people[-1]])
|
||||||
#set $caption = ' '.join(([] if not $cur_cast.name else [$cur_cast.name]) + ([] if not $by_people else ['by', $by_people])).replace('"', '"')
|
#set $caption = ' '.join(([] if not $cur_cast.name else [$cur_cast.name]) + ([] if not $by_people else ['by', $by_people])).replace('"', '"')
|
||||||
<li class="cast body glide__slide" data-rid="$next($iter($cur_cast.person)).ref_id()">
|
<li class="cast body glide__slide" data-rid="$next($iter($cur_cast.person)).ref_id()">
|
||||||
|
|
Binary file not shown.
Loading…
Reference in a new issue