Closed klaas closed 4 years ago
The default configuration of the url cache directory in ImageDownloader is broken. This pull request fixes it.
ImageDownloader
URL.absoluteString returns file:///my/path for file URLs. We have to use URL.path instead.
URL.absoluteString
file:///my/path
URL.path
Goals :soccer:
The default configuration of the url cache directory in
ImageDownloader
is broken. This pull request fixes it.Implementation Details :construction:
URL.absoluteString
returnsfile:///my/path
for file URLs. We have to useURL.path
instead.