From cfea7164b7b2e93717b967323fbe39fc3e9438d2 Mon Sep 17 00:00:00 2001 From: samwiseg0 Date: Mon, 16 Sep 2019 22:50:31 -0400 Subject: [PATCH] Fix release date to be a str vs int --- plexpy/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/common.py b/plexpy/common.py index 1ef38a5a..eaae6b3a 100644 --- a/plexpy/common.py +++ b/plexpy/common.py @@ -430,7 +430,7 @@ NOTIFICATION_PARAMETERS = [ {'name': 'Album Count', 'type': 'int', 'value': 'album_count', 'description': 'The number of albums.'}, {'name': 'Track Count', 'type': 'int', 'value': 'track_count', 'description': 'The number of tracks.'}, {'name': 'Year', 'type': 'int', 'value': 'year', 'description': 'The release year for the item.'}, - {'name': 'Release Date', 'type': 'int', 'value': 'release_date', 'description': 'The release date (in date format) for the item.'}, + {'name': 'Release Date', 'type': 'str', 'value': 'release_date', 'description': 'The release date (in date format) for the item.'}, {'name': 'Air Date', 'type': 'str', 'value': 'air_date', 'description': 'The air date (in date format) for the item.'}, {'name': 'Added Date', 'type': 'str', 'value': 'added_date', 'description': 'The date (in date format) the item was added to Plex.'}, {'name': 'Updated Date', 'type': 'str', 'value': 'updated_date', 'description': 'The date (in date format) the item was updated on Plex.'},