This commit is contained in:
Abdallah 2024-01-28 11:26:17 +01:00 committed by GitHub
parent 463e6f85f6
commit b1da3f3421
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,7 +26,7 @@ object SevenZUtil {
.onEachIndexed { i, it ->
if (i > 0) return@onEachIndexed
val method = it.contentMethods.first().method
if(method !in GoodMethods) notifySlowArchives(method.name)
if (method !in GoodMethods) notifySlowArchives(method.name)
}
.sortedWith { f1, f2 -> f1.name.compareToCaseInsensitiveNaturalOrder(f2.name) }
.map(::getInputStream)