does anybody have experience with giving kamel ima...
# multiplatform
b
does anybody have experience with giving kamel images your server certificates? I'm having some trouble at the moment. I'm giving my correctly setup http client in a custom config like this:
Copy code
kamelConfig = KamelConfig {
    httpFetcher(httpClient)
}
and calling KamelImage like this:
Copy code
CompositionLocalProvider(LocalKamelConfig provides kamelConfig) {
    KamelImage(
        asyncPainterResource("<https://test.com/static>" + image.image),
        image.alt_text,
        contentScale = ContentScale.Fit,
        modifier = Modifier.height(100.dp)
    )
}
I'm not getting any error message but i'm also not getting my images. My client is correctly setup, I use it to get all the other data from the same server.