mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[3] #978 Fix -ca
This commit is contained in:
parent
05a1076160
commit
65adc6afad
2 changed files with 6 additions and 6 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.17.2-develop2
|
||||
1.17.2-develop3
|
||||
|
|
|
@ -442,17 +442,17 @@ def run_libraries(config):
|
|||
temp_items = None
|
||||
list_key = None
|
||||
expired = None
|
||||
if config.Cache and cache_libraries:
|
||||
if config.Cache:
|
||||
list_key, expired = config.Cache.query_list_cache("library", library.mapping_name, 1)
|
||||
if list_key and expired is False:
|
||||
if cache_libraries and list_key and expired is False:
|
||||
logger.info(f"Library: {library.mapping_name} loaded from Cache")
|
||||
temp_items = config.Cache.query_list_ids(list_key)
|
||||
|
||||
if not temp_items:
|
||||
temp_items = library.cache_items()
|
||||
if config.Cache:
|
||||
if list_key:
|
||||
if config.Cache and list_key:
|
||||
config.Cache.delete_list_ids(list_key)
|
||||
if config.Cache and cache_libraries:
|
||||
list_key = config.Cache.update_list_cache("library", library.mapping_name, expired, 1)
|
||||
config.Cache.update_list_ids(list_key, [(i.ratingKey, i.guid) for i in temp_items])
|
||||
if not library.is_music:
|
||||
|
|
Loading…
Reference in a new issue