mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-14 22:30:30 +05:30
Merge pull request #4286 from Bnyro/master
fix: improve filtering of DeArrow titles and thumbnails
This commit is contained in:
commit
3c5ef9524f
@ -19,10 +19,10 @@ object DeArrowUtil {
|
||||
} catch (e: Exception) {
|
||||
return null to null
|
||||
}
|
||||
val newTitle = content.titles.maxByOrNull { it.votes }?.title
|
||||
val newThumbnail =
|
||||
content.thumbnails.filter { it.thumbnail != null }.maxByOrNull { it.votes }
|
||||
?.takeIf { !it.original }?.thumbnail
|
||||
val newTitle = content.titles.firstOrNull { it.votes >= 0 || it.locked }?.title
|
||||
val newThumbnail = content.thumbnails.firstOrNull {
|
||||
it.thumbnail != null && !it.original && (it.votes >= 0 || it.locked)
|
||||
}?.thumbnail
|
||||
return newTitle to newThumbnail
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user