[18] fix cache storage

pull/779/head
meisnate12 3 years ago
parent c10b8916c9
commit db16044dae

@ -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.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.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.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 expiration_date.strftime("%Y-%m-%d"), obj.tmdb_id
)) ))

Loading…
Cancel
Save