mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-20 13:23:24 -07:00
Make update metadata music match case insensitive
This commit is contained in:
parent
7d509b2e8e
commit
63b363dfe4
2 changed files with 5 additions and 5 deletions
|
@ -3033,13 +3033,13 @@ class PmsConnect(object):
|
|||
key = int(child_index) if child_index else child_title
|
||||
children.update({key: {'rating_key': int(child_rating_key)}})
|
||||
|
||||
key = int(parent_index) if match_type == 'index' else parent_title
|
||||
key = int(parent_index) if match_type == 'index' else str(parent_title).lower()
|
||||
parents.update({key:
|
||||
{'rating_key': int(parent_rating_key),
|
||||
'children': children}
|
||||
})
|
||||
|
||||
key = 0 if match_type == 'index' else title
|
||||
key = 0 if match_type == 'index' else str(title).lower()
|
||||
key_list = {key: {'rating_key': int(rating_key),
|
||||
'children': parents},
|
||||
'section_id': section_id,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue