mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-14 06:10:31 +05:30
fix(import): use collector
This commit is contained in:
parent
0fcc1e6f79
commit
218f271ba6
@ -23,6 +23,7 @@ import kotlin.streams.toList
|
||||
import kotlinx.serialization.ExperimentalSerializationApi
|
||||
import kotlinx.serialization.json.decodeFromStream
|
||||
import kotlinx.serialization.json.encodeToStream
|
||||
import java.util.stream.Collectors
|
||||
|
||||
object ImportHelper {
|
||||
/**
|
||||
@ -79,7 +80,7 @@ object ImportHelper {
|
||||
it.bufferedReader().use { reader ->
|
||||
reader.lines().map { line -> line.substringBefore(",") }
|
||||
.filter { channelId -> channelId.length == 24 }
|
||||
.toList()
|
||||
.collect(Collectors.toList())
|
||||
}
|
||||
}.orEmpty()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user