Closed cgrossde closed 1 year ago
It seems the LocalFileUrl is missing the file schema internally leading to an empty preview (IntelliJ Ultimate 2022.x). Using the Urls.newUri() and providing the file schema explicitly fixes the problem.
LocalFileUrl
file
Urls.newUri()
Thanks for your contribution, @cgrossde. Can you please run ./gradlew :spotlessApply to fix the formatting issues?
./gradlew :spotlessApply
@cberg-zalando Done
It seems the
LocalFileUrl
is missing thefile
schema internally leading to an empty preview (IntelliJ Ultimate 2022.x). Using theUrls.newUri()
and providing thefile
schema explicitly fixes the problem.