Nemo-qml-plugin-thumbnailer’s Thumbnail uses URL for a source, but unlike Image only supports local paths. For example, this code shows nothing on the screen:
Thumbnail {
source: "https://sailfishos.org/content/uploads/fbrfg/apple-touch-icon.png"
sourceSize.width: Theme.iconSizeLarge
sourceSize.height: Theme.iconSizeLarge
}
And with the provider, this code throws an error:
Image {
source: "image://nemoThumbnail/https://sailfishos.org/content/uploads/fbrfg/apple-touch-icon.png"
sourceSize.width: Theme.iconSizeLarge
sourceSize.height: Theme.iconSizeLarge
}
I could of course workaround this by caching images myself and using normal Image, and I probably will. But I think that the native solution should have this fixed.