Fix network for persons.

This commit is contained in:
Prinz23 2023-02-16 18:28:24 +01:00 committed by JackDandy
parent 63cfb52888
commit 93f79c116a
2 changed files with 13 additions and 7 deletions

View file

@ -1,4 +1,9 @@
### 3.27.4 (2023-02-15 13:30:00 UTC) ### 3.27.5 (2023-02-16 18:30:00 UTC)
* Fix network for persons
### 3.27.4 (2023-02-15 13:30:00 UTC)
* Fix updating with running virtualenv * Fix updating with running virtualenv

View file

@ -523,6 +523,7 @@ class TvMaze(TVInfoBase):
show.overview = clean_data(c.show.summary) show.overview = clean_data(c.show.summary)
show.status = clean_data(c.show.status) show.status = clean_data(c.show.status)
net = c.show.network or c.show.web_channel net = c.show.network or c.show.web_channel
if net:
show.network = clean_data(net.name) show.network = clean_data(net.name)
show.network_id = net.maze_id show.network_id = net.maze_id
show.network_country = clean_data(net.country) show.network_country = clean_data(net.country)