This commit is contained in:
deniscerri 2025-08-26 16:32:44 +02:00
parent b727be0076
commit a825321abc
No known key found for this signature in database
GPG key ID: 95C43D517D830350

View file

@ -50,7 +50,7 @@ class FormatUtil(private var context: Context) {
val formatImportance = mutableListOf("id","codec", "container", "language")
if (preferredFormatSize == "smallest") {
formatImportance.add("smallsize")
}else if (preferredFormatSize == "biggest") {
}else if (preferredFormatSize == "largest") {
formatImportance.add("file_size")
}
@ -81,7 +81,7 @@ class FormatUtil(private var context: Context) {
val formatImportance = mutableListOf("id","resolution", "codec", "container")
if (preferredFormatSize == "smallest") {
formatImportance.add("smallsize")
}else if (preferredFormatSize == "biggest") {
}else if (preferredFormatSize == "largest") {
formatImportance.add("file_size")
}