From f18dc6bcae8eccd594245ef9a1989e1a818dab86 Mon Sep 17 00:00:00 2001 From: blacktwin Date: Thu, 14 Sep 2017 19:47:12 -0400 Subject: [PATCH] no refresh --- reporting/weekly_stats_reporting.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/reporting/weekly_stats_reporting.py b/reporting/weekly_stats_reporting.py index 8ed948c..320a142 100644 --- a/reporting/weekly_stats_reporting.py +++ b/reporting/weekly_stats_reporting.py @@ -134,8 +134,7 @@ def get_get_library_media_info(section_id): # Get a list of all libraries on your server. payload = {'apikey': PLEXPY_APIKEY, 'cmd': 'get_library_media_info', - 'section_id': section_id, - 'refresh': True} + 'section_id': section_id} try: r = requests.get(PLEXPY_URL.rstrip('/') + '/api/v2', params=payload)