mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-14 14:20:30 +05:30
Merge pull request #4466 from FineFindus/fix/import-google-takeout
fix(import): prevent crash when importing
This commit is contained in:
commit
d6a3166e86
@ -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