mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2025-02-16 22:08:25 +00:00
[18] fix cache storage
This commit is contained in:
parent
c10b8916c9
commit
db16044dae
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.16.1-develop17
|
||||
1.16.1-develop18
|
||||
|
|
|
@ -513,7 +513,7 @@ class Cache:
|
|||
obj.vote_count, obj.vote_average, obj.language_iso, obj.language_name, "|".join(obj.genres), "|".join(obj.keywords),
|
||||
obj.first_air_date.strftime("%Y-%m-%d") if obj.first_air_date else None,
|
||||
obj.last_air_date.strftime("%Y-%m-%d") if obj.last_air_date else None,
|
||||
obj.status, obj.type, obj.tvdb_id, "|".join(obj.countries), "|".join(obj.seasons),
|
||||
obj.status, obj.type, obj.tvdb_id, "|".join([str(c) for c in obj.countries]), "|".join([str(s) for s in obj.seasons]),
|
||||
expiration_date.strftime("%Y-%m-%d"), obj.tmdb_id
|
||||
))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue