diff --git a/README.md b/README.md index 9b3ee1e8..77e87eb6 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,9 @@ NB: This project is still very early in development. This project is based on code from Headphones (https://github.com/rembo10/headphones) and PlexWatchWeb (https://github.com/ecleese/plexWatchWeb). -A python based web front-end for plexWatch. +A python based web application for monitoring and logging activity on your Plex Media Server. -* plexWatch Plex forum thread: http://forums.plexapp.com/index.php/topic/72552-plexwatch-plex-notify-script-send-push-alerts-on-new-sessions-and-stopped/ -* plexWatch (Windows branch) Plex forum thread: http://forums.plexapp.com/index.php/topic/79616-plexwatch-windows-branch/ +* plexPy forum thread: https://forums.plex.tv/discussion/169591/plexpy-another-plex-monitoring-program ###Support diff --git a/plexpy/plexwatch_import.py b/plexpy/plexwatch_import.py index 82ac33ce..cf151045 100644 --- a/plexpy/plexwatch_import.py +++ b/plexpy/plexwatch_import.py @@ -45,7 +45,7 @@ def extract_plexwatch_xml(xml=None): originally_available_at = helpers.get_xml_attr(a, 'originallyAvailableAt') last_viewed_at = helpers.get_xml_attr(a, 'lastViewedAt') parent_media_index = helpers.get_xml_attr(a, 'parentIndex') - parent_thumb = helpers.get_xml_attr(a, 'parent_thumb') + parent_thumb = helpers.get_xml_attr(a, 'parentThumb') rating = helpers.get_xml_attr(a, 'rating') thumb = helpers.get_xml_attr(a, 'thumb') media_type = helpers.get_xml_attr(a, 'type')