Skip to content

Instantly share code, notes, and snippets.

@henryjfry
Created May 26, 2019 17:33
Show Gist options
  • Save henryjfry/6162a7115ada06a49616e03794d36e1e to your computer and use it in GitHub Desktop.
Save henryjfry/6162a7115ada06a49616e03794d36e1e to your computer and use it in GitHub Desktop.
Fix OPENMETA issue with ampersands (&) in show titles - plugin.video.openmeta/resources/lib/play_base.py (PART 2)
########LINE 102 Add the uncommented line to replace the commented out line, which replaces " & " with " and "
# link = text.apply_parameters(text.to_unicode(command['link']), parameters)
link = text.apply_parameters(text.to_unicode(command['link']), parameters).replace(' & ',' and ')
# xbmc.log(link, level=4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment