Update plex_client.py

This commit is contained in:
Broque Thomas 2025-07-29 11:07:16 -07:00
parent 2b97e685dc
commit b5859a5ed5

View file

@ -484,7 +484,8 @@ class PlexClient:
if match: if match:
date_str = match.group(1) date_str = match.group(1)
return datetime.strptime(date_str, '%Y-%m-%d') parsed_date = datetime.strptime(date_str, '%Y-%m-%d')
return parsed_date
return None return None