Update update.js

This commit is contained in:
Aleksandr Statciuk 2022-06-09 14:00:00 +03:00
parent b4d9b3179b
commit 534f17338a
1 changed files with 2 additions and 2 deletions

View File

@ -9,8 +9,8 @@ async function main() {
const levels = { online: 1, blocked: 2, timeout: 3, error: 4, default: 5 }
streams = orderBy(
streams,
['channel', s => levels[s.status] || levels['default'], 'height', 'url'],
['asc', 'asc', 'desc', 'asc']
['channel', s => levels[s.status] || levels['default'], 'height', 'frame_rate', 'url'],
['asc', 'asc', 'desc', 'desc', 'asc']
)
const files = _.groupBy(streams, 'filepath')