We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
replace
epg/sites/tvpassport.com/tvpassport.com.config.js
Lines 118 to 120 in f5623a4
Example for movie "Mon ami le pingouin":
data-showname="Cinéma" data-showtitle="Cinéma - Mon ami le pingouin"
by
function parseTitle($item) { // return $item('*').data('showname').toString() const showname = $item('*').data('showname').toString() if (showname === "Cinéma") { const showtitle = $item('*').data('showtitle').toString() return showtitle.replace("Cinéma - ", "").trim() } else { return showname } }
attribute "showtitle" seems to be a good choice also in all cases:
function parseTitle($item) { // return $item('*').data('showname').toString() return $item('*').data('showtitle').toString() }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
replace
epg/sites/tvpassport.com/tvpassport.com.config.js
Lines 118 to 120 in f5623a4
Example for movie "Mon ami le pingouin":
by
attribute "showtitle" seems to be a good choice also in all cases:
The text was updated successfully, but these errors were encountered: