this post was submitted on 27 Mar 2025
18 points (100.0% liked)

Feddit UK

1470 readers
23 users here now

Community for the Feddit UK instance.
A place to log issues, and for the admins to communicate with everyone.

founded 2 years ago
MODERATORS
 

I'm asking this here because it looks like a very weird feddit.uk specific issue.

If I post a URL for cdn.bsky.app to an image, it shows up fine on the default web UI.

On the app I use (Connect) it only ever shows up as a link.

"But!", I hear you cry, "surely that's an app problem?"

You'd think so, and I thought so, but it is only happening on feddit.uk. If I switch to a different account on a different instance, they display as expected. It also doesn't matter which instance they were originally posted to, as I've just seen an image from bsky that I posted on feddit.uk, and that has the same problem.

Any ideas? This has been bugging me for weeks.

cross-posted from: https://feddit.uk/post/24365548

This is a bit odd. From my feddit.uk account (this one) I get the above for posts on [email protected].

If I log into the account they were posted with (this is my bot) on lemmings.world they display as expected:

If I log back in as myself on feddit.uk website, the images also display as expected (Connect doesn't seem to want to upload this one, but you'll see it without logging in at feddit.uk/c/[email protected]).

What's different?

top 17 comments
sorted by: hot top controversial new old
[–] [email protected] 3 points 6 days ago (3 children)

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.

[–] [email protected] 1 points 5 days ago

Hey there, fellow Flutter dev! πŸ‘‹

Thanks for tagging me in this and bringing this to my attention! I'll take a look at this issue on my end as well and apply some fixes to it.

[–] [email protected] 1 points 5 days ago

If you don't mind me asking, but what's the reason you're detecting images like this instead of using the MIME type Lemmy indicates (or hell, the one in the Content-Type header from GET'ting the URL)?

[–] [email protected] 1 points 5 days ago

I'm not entirely sure what you did, but that has fixed it - thanks!

[–] [email protected] 3 points 1 week ago

You sure it's not just your app? Works fine for me

[–] [email protected] 2 points 1 week ago (2 children)

It might be the weird format Bluesky uses for image links:

https://cdn.bsky.app/img/feed_fullsize/plain/did:plc:wf7nfy2us3h5gpa7zfettmzl/bafkreib6k2uwcy52wi654fdfmfqakzqu54m4eq7vi6cwrolwud6yhehihy@jpeg?.jpg

It show up fine in the API:

~> curl https://feddit.uk/api/v3/post?id=26413986 | jq .post_view.post
{
  "id": 26413986,
  "name": "Daily bunny no.2906 is making waves",
  "url": "https://cdn.bsky.app/img/feed_fullsize/plain/did:plc:wf7nfy2us3h5gpa7zfettmzl/bafkreib6k2uwcy52wi654fdfmfqakzqu54m4eq7vi6cwrolwud6yhehihy@jpeg?.jpg",
  "body": "[…]",
  "creator_id": 16021247,
  "community_id": 683956,
  "removed": false,
  "locked": false,
  "published": "2025-03-27T03:33:21.968620Z",
  "deleted": false,
  "nsfw": false,
  "thumbnail_url": "https://cdn.bsky.app/img/feed_fullsize/plain/did:plc:wf7nfy2us3h5gpa7zfettmzl/bafkreib6k2uwcy52wi654fdfmfqakzqu54m4eq7vi6cwrolwud6yhehihy@jpeg?.jpg",
  "ap_id": "https://lemmings.world/post/23311812",
  "local": false,
  "language_id": 37,
  "featured_community": false,
  "featured_local": false,
  "url_content_type": "image/jpeg"
}

The only difference between us and .ca is they generate a thumbnail_url, while we don't (I turned that off when Lemmy had thumbnail issues).

[–] [email protected] 3 points 1 week ago* (last edited 1 week ago) (1 children)

Tested some apps I have (I don't have Connect). In Thunder it show up as a link, in Jeboa and Voyager it shows up as an image like you'd expect.

[–] [email protected] 1 points 1 week ago (1 children)

Hmm, maybe it's the thumbnail URL causing it?

[–] [email protected] 1 points 6 days ago (1 children)

Connect really shouldn't use the thumbnail_url as an image link post-0.19.6 (see here). I can turn it back on, but that only fixes the issue for us, we're not the only instance with thumbnail generation turned off (e.g. lemm.ee).

[–] [email protected] 1 points 6 days ago

I'm not sure if this is what is happening. @[email protected] - is Connect using thumbnail_url?

[–] [email protected] 1 points 1 week ago* (last edited 1 week ago) (1 children)

I thought colons aren’t allowed in urls after the protocol and port parts unless they’re url encoded?

[–] [email protected] 1 points 1 week ago (1 children)

I tried URL encoding the colons (and the @), no change.

[–] [email protected] 1 points 1 week ago (1 children)
[–] [email protected] 1 points 1 week ago (1 children)

I put that query string in. Without it, it just shows up as a link everywhere. Lemmy doesn't seem to be able to identify links to images without obvious filenames!

[–] [email protected] 2 points 1 week ago (1 children)

Hang on, let me get this straight in my own head:

  1. if you access the community through a web browser all is fine.
  2. if you access it via connect on the Feddit.uk instance it doesn’t work
  3. if you access it via another instance on Connect it’s ok

Sound right?

Have you tried a different app? I can see the images via Voyager.

[–] [email protected] 1 points 1 week ago

Correct.

I haven't tried another app, but flamingo has tried some (see their comment), and Thunder appears to have the same issue.

[–] [email protected] 1 points 1 week ago

Even when it is displayed "as expected" as you put it, it seems to be displaying a thumbnail preview of the website rather than embedding the image directly. I'm experiencing a similar problem in Thunder.