Archived
1
0

Fixing AL and AC namespaced Consumer control media keys

This commit is contained in:
Jacob Alexander 2015-10-01 22:28:36 -07:00
parent e381131176
commit f1bad4de4b

View File

@ -176,7 +176,8 @@ class Backend( BackendBase ):
# Special cases # Special cases
if isinstance( resultItem[1][ arg ], str ): if isinstance( resultItem[1][ arg ], str ):
# If this is a CONSUMER_ element, needs to be split into 2 elements # If this is a CONSUMER_ element, needs to be split into 2 elements
if re.match( '^CONSUMER_', resultItem[1][ arg ] ): # AC_ and AL_ are other sections of consumer control
if re.match( '^(CONSUMER|AC|AL)_', resultItem[1][ arg ] ):
tag = resultItem[1][ arg ].split( '_', 1 )[1] tag = resultItem[1][ arg ].split( '_', 1 )[1]
if '_' in tag: if '_' in tag:
tag = tag.replace( '_', '' ) tag = tag.replace( '_', '' )