fix programetv.ro checking, continue uniformizing

This commit is contained in:
theofficialomega
2025-07-27 18:10:22 +02:00
parent 5be8899520
commit f3a3a8c404
44 changed files with 193 additions and 154 deletions

View File

@@ -72,8 +72,8 @@ function parseStop(item) {
}
function parseContent(content) {
const [, data] = content.match(/var pageData = ({.+});\n/) || [null, null]
const [, data] = content.match(/var pageData = ({.+?});/) || [null, null]
return data ? JSON.parse(data) : {}
}