mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-12 10:00:05 -04:00
Update create.js
This commit is contained in:
parent
41f1941606
commit
7eeb15af9c
1 changed files with 4 additions and 4 deletions
|
@ -49,10 +49,10 @@ async function findStreams() {
|
|||
stream.set('http_referrer', { http_referrer: item.http.referrer })
|
||||
stream.set('user_agent', { user_agent: item.http['user-agent'] })
|
||||
stream.set('status', { status: cached.status || 'online' })
|
||||
stream.set('width', { width: cached.width })
|
||||
stream.set('height', { height: cached.height })
|
||||
stream.set('bitrate', { bitrate: cached.bitrate })
|
||||
stream.set('frame_rate', { frame_rate: cached.frame_rate })
|
||||
stream.set('width', { width: cached.width || 0 })
|
||||
stream.set('height', { height: cached.height || 0 })
|
||||
stream.set('bitrate', { bitrate: cached.bitrate || 0 })
|
||||
stream.set('frame_rate', { frame_rate: cached.frame_rate || 0 })
|
||||
stream.set('added_at', { added_at: cached.added_at })
|
||||
stream.set('updated_at', { updated_at: cached.updated_at })
|
||||
stream.set('checked_at', { checked_at: cached.checked_at })
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue