diff --git a/VERSION b/VERSION index 202e6f97..98c90fdc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.16.1-develop17 +1.16.1-develop18 diff --git a/modules/cache.py b/modules/cache.py index 07290cd8..82983b50 100644 --- a/modules/cache.py +++ b/modules/cache.py @@ -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 ))