Davide Giuseppe Farella
02/26/2019, 2:26 AMfun `playlist realTest`() {
val source = ParsersImpl()
runBlocking {
source.readFrom(
Playlist("<https://sourcetv.info/dl/01/it29.m3u>", SourceFile.Type.REMOTE ),
onChannel = { println( it ) },
onGroup = { println( it ) },
onError = { println( "${it.reason.name} - ${it.rawChannel}" ) }
)
}
}
The http call resides here: override suspend fun readBytes( path: String ) = client.get<ByteArray>( path )
The problem is that when I run my Android app, 9/10 gives me the following exceptiondavidasync
02/26/2019, 2:30 AMDavide Giuseppe Farella
02/26/2019, 2:30 AM1.1.2
davidasync
02/26/2019, 2:31 AM1.1.3
https://github.com/ktorio/ktor/issues/866
I think it's worth to try 🙂Davide Giuseppe Farella
02/26/2019, 2:32 AM