Hello, Connect dev here but I'll also tag the Thunder dev @[email protected] as far as I know we're the two Flutter based front-ends.
The issue I believe seems to be with how the URI gets parsed for Bluesky. Since the URL path ends with @jpeg?.jpg
the uri.path that I get ends up being "/img/feed_fullsize/plain/did:plc:wf7nfy2us3h5gpa7zfettmzl/bafkreidiiq5pzo4dec3o32z4okokwo5vz55ykd5vsm7ltqkxzrfpwnah64@jpeg"
instead of the typical some_path/some_image.jpg
. So when the code checks if the url is an image it doesn't find a file extension and reports that this is a link and not an image. The simplified form of what I'm doing app-side is
List<String> imageFormats = [
"jpg",
...
];
var uri = Uri.parse(url);
var extension = uri.path.split('.').last;
if (imageFormats.contains(extension)) {
return true;
}
...
For some instances this is not a problem since they are proxying all image requests which is why it might be happening only on specific instances for you.
I'll roll this fix into the next version, which should be rolling out tonight.