#258 reload less of the item to speed up caching

This commit is contained in:
meisnate12 2021-05-18 21:05:54 -04:00
parent 5b42fd225a
commit f5744cc315

View file

@ -396,6 +396,7 @@ class PlexAPI:
@retry(stop_max_attempt_number=6, wait_fixed=10000, retry_on_exception=util.retry_if_not_plex)
def get_guids(self, item):
item.reload(includeOnDeck=False, includeRelated=False, includeReviews=False)
return item.guids
@retry(stop_max_attempt_number=6, wait_fixed=10000, retry_on_exception=util.retry_if_not_plex)