this post was submitted on 09 May 2024
90 points (93.3% liked)

Technology

58036 readers
4339 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related content.
  3. Be excellent to each another!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, to ask if your bot can be added please contact us.
  9. Check for duplicates before posting, duplicates may be removed

Approved Bots


founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 4 months ago* (last edited 4 months ago) (6 children)

You can open any profile with multiple pages worth of posts or comments on old.reddthat.com and it's jumbled. Even my own profile is jumbled: https://old.reddthat.com/u/e0qdk

The first page is mostly comments I made two weeks ago plus a thread from today and some very old threads. The second page has comments I made earlier today and during the past week. The third page starts with my most recent comment and then has a bunch of older comments.

The exact order might change after posting this, but my own recent comments mostly being on page two has been pretty consistent for a while.

If I look at a very active user's profile (like MentalEdge's), I see threads from today show up on page three(!) while there are threads from a week or more ago on pages one and two.

I'm not sure what's going on exactly, but it basically makes user profiles pretty useless right now through mlmym.

Edit: I can't even find this comment in my profile, but my other reply (regarding the envelope being fixed in 0.0.43) shows up on page 3.

[–] nnrx 2 points 4 months ago (5 children)

Looks right here https://old.lemmy.world/u/[email protected]

looks like the default sort for the user history api changed in whatever version of lemmy reddthat is running. Fix in the latest mlmym release 0.0.44 accounts for that now!

[–] [email protected] 1 points 4 months ago (4 children)

Thanks! I'll go ask Tiff about getting reddthat updated later.

BTW, is there a community for discussion of mlmym itself somewhere on lemmy? I can't participate on GitHub, but those aren't the only issues I've found. (e.g. there's also ?format=jpg&thumbnail=96 on non-pictrs links and a text handling issue with angle brackets...)

[–] nnrx 2 points 4 months ago* (last edited 4 months ago) (2 children)

no lemmy community for mlmym yet, that's good idea.

do you have an example of that thumbnail issue?

[–] [email protected] 1 points 4 months ago* (last edited 4 months ago)

I'm having trouble finding an example of the thumbnail issue again right now but I was seeing the pictrs conversion parameters passed to URLs from catbox.moe, i.postimg.cc, and other sources in the CSS for the thumbnail when I reported the issue to Tiff ~3 weeks ago. It's possible that it got fixed/suppressed by another change since then though. (0.0.44 was deployed a few hours ago and I think there may have also been a beta patch bump for the lemmy backend at some point since I reported the issue originally in our local support community.)

I'll let you know if I see it pop up again.

For the text handling issue, I was seeing text like " by in " (i.e. "<thread title> by <username> in <community>" if it still happens) getting misinterpreted as raw HTML instead of being escaped. (i.e. <!-- raw HTML omitted --> was showing up in the HTML output for the page.)

You may recognize that text as the pattern for a recently fixed bug in the user profiles; I found the text handling issue while trying to explain the other issue to Tiff a few weeks ago.

Will edit this comment immediately after posting to let you know if I still see the text issue.

EDIT: I still see the text issue show up in this comment. https://old.reddthat.com/comment/10370610

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

I ran into an example of the thumbnail issue again today -- this time on a post from kbin: https://old.reddthat.com/post/19193476

The thumbnail looks like this in the HTML:

<div class="thumb">
  <a class="url"
     href="https://media.kbin.social/media/60/a4/60a45b8ff88b1b2e3a0f77b701feb323c5bbfb7ceeb75154ea7df5d6eea15ef8.jpg"
     >
    <div  style="background-image: url(https://media.kbin.social/media/60/a4/60a45b8ff88b1b2e3a0f77b701feb323c5bbfb7ceeb75154ea7df5d6eea15ef8.jpg?format=jpg&amp;thumbnail=96)"></div>
  </a>
</div>

Note that it's making a request to kbin.social with ?format=jpg&thumbnail=96 parameters in the CSS -- which results in the full image being loaded since kbin doesn't run pictrs.

The versions in use on reddthat (according to the settings page) are:

lemmy: 0.19.4-beta.7

mlmym: 0.0.44

[–] nnrx 2 points 3 months ago

This kinda looks like an issue between lemmy and kbin. The issue is present on the lemmy ui as well. The ?format=jpg&thumbnail=96 parameter being there doesn't have an effect here. The issue is the thumbnail_url is reported wrong. You can see that here. The thumbnail_url should be: https://kbin.social/media/cache/resolve/entry_thumb/60/a4/60a45b8ff88b1b2e3a0f77b701feb323c5bbfb7ceeb75154ea7df5d6eea15ef8.jpg We could try and use some regex to lookout for kbin images and rewrite the thumbnail_url, but it should probably just be fixed upstream.

Found this github issue which might be related: https://github.com/LemmyNet/lemmy/issues/3775

load more comments (1 replies)
load more comments (1 replies)
load more comments (1 replies)