mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-12 10:00:05 -04:00
Update load.js
This commit is contained in:
parent
c49a99b3d3
commit
8b6bee2ed3
1 changed files with 9 additions and 1 deletions
|
@ -36,7 +36,15 @@ async function main() {
|
|||
const results = {}
|
||||
for (const [i, item] of items.entries()) {
|
||||
const message = `[${i + 1}/${total}] ${item.filepath}: ${item.url}`
|
||||
const result = await checker.check(item, config)
|
||||
const request = {
|
||||
_id: item._id,
|
||||
url: item.url,
|
||||
http: {
|
||||
referrer: item.http_referrer,
|
||||
'user-agent': item.user_agent
|
||||
}
|
||||
}
|
||||
const result = await checker.check(request, config)
|
||||
if (!result.error) {
|
||||
logger.info(message)
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue