I am using Kamel to load image from URL with disk ...
# multiplatform
j
I am using Kamel to load image from URL with disk caching options, here is my KamelConfig:
Copy code
KamelConfig {
    takeFrom(KamelConfig.Default)
    httpFetcher {
        httpCache(DefaultHttpCacheSize * 3)
    }
}
The images download fine within the same app launch. However, the images need to load again after restarting my app. Am I doing something wrong?