Post B3z7tAmCuD6P8a9xvE by phnt@pl.borked.technology
(DIR) More posts by phnt@pl.borked.technology
(DIR) Post #B3z4MtFgE70nelrOs4 by cell@shitposter.world
2026-03-06T14:55:39.443642Z
2 likes, 1 repeats
>people uploading full res images as super high quality JPGs or PNGs to fedi:angery:
(DIR) Post #B3z4Rv8MemXqwQpxmi by sun@shitposter.world
2026-03-06T14:56:35.973252Z
1 likes, 1 repeats
@cell I think it does that when you paste from clipboard
(DIR) Post #B3z4f3cIQg9V0z6MS0 by cell@shitposter.world
2026-03-06T14:58:58.180549Z
0 likes, 1 repeats
@sun suddenly i'm happy pleromaFE now converts images to webp by default
(DIR) Post #B3z4oiBkx9q1S8I7kG by yonle@fedinet.waltuh.cyou
2026-03-06T14:59:46.790633Z
1 likes, 0 repeats
@cell and also high quality avatar & banner, especially animated avatar. that’s why i have this patch
(DIR) Post #B3z4uiiZtj80peVaYC by sun@shitposter.world
2026-03-06T15:01:47.864585Z
1 likes, 1 repeats
@cell is that in the changes I just pulled?
(DIR) Post #B3z5MHZ6Re0UjADeYC by cell@shitposter.world
2026-03-06T15:06:46.649900Z
1 likes, 1 repeats
@sun oh it was in the previous version of pleromaFE on SPW as well; iirc it's the new pleromaFE defaultreally handy for stuff like pasting directly from clipboard
(DIR) Post #B3z6UZYlWdBUo7Zv4C by phnt@pl.borked.technology
2026-03-06T15:19:28.342358Z
0 likes, 0 repeats
@yonle @cell Also when you are into optimizing media, serving upload media directly from nginx is a good optimization as well.But be warned that on Pleroma, if you enable the ?name= query parameter for uploads and in nginx construct a content-disposition header from that query parameter for preserving filenames, filenames with space will suddenly now have pluses everywhere, because that's how it is supposed to be in the query. There's no way around that besides writing your own njs filter.Akkoma does not have this specific issue (it has different ones), because Akkoma has not pulled the URI encoding fixes from Pleroma.
(DIR) Post #B3z7imkVNt5TioPVrM by phnt@pl.borked.technology
2026-03-06T15:33:14.644692Z
0 likes, 0 repeats
@yonle @cell >because Akkoma has not pulled the URI encoding fixes from Pleroma.As an example, the emojis on my profile will not work correctly when used in Akkoma.
(DIR) Post #B3z7t9nEYuKU5TdGsq by yonle@fedinet.waltuh.cyou
2026-03-06T15:34:04.167714Z
0 likes, 0 repeats
@phnt @cell hn
(DIR) Post #B3z7tAmCuD6P8a9xvE by phnt@pl.borked.technology
2026-03-06T15:35:06.124332Z
0 likes, 0 repeats
@yonle @cell That's because they are correctly encoded from Pleroma. If you use those emojis with the same filenames on Akkoma as emoji reactions or put them in your profile, they will be broken.
(DIR) Post #B3z87cjhkVUJuHscPw by yonle@fedinet.waltuh.cyou
2026-03-06T15:36:02.132000Z
0 likes, 0 repeats
@phnt @cell i remember adding an emoji with the dir having a space makes it not wanna accepting requests. that could be it
(DIR) Post #B3z87dbaWAacbP5ePA by phnt@pl.borked.technology
2026-03-06T15:37:42.777408Z
0 likes, 0 repeats
@yonle @cell That is partially it, yes. But you won't fix it fully even with plain URI.encode either. I've asked silverpill to include the Pleroma module for it in the bug report to Akkoma, but for reasons Oneric completely disregarded it.
(DIR) Post #B3z8gdu3P0jjf4Q2SW by yonle@fedinet.waltuh.cyou
2026-03-06T15:38:17.217413Z
0 likes, 0 repeats
@phnt @cell i guess i gotta patch it then.
(DIR) Post #B3z8geoQ1Rp6Tsn3JY by phnt@pl.borked.technology
2026-03-06T15:44:02.495593Z
0 likes, 0 repeats
@yonle @cell Here's one of the fixes for the emojis specifically. https://git.pleroma.social/pleroma/pleroma/pulls/7794And this for the resthttps://git.pleroma.social/pleroma/pleroma/pulls/7741 (this won't apply cleanly as it is built on an MR that was lost in a data loss, you'll have to dig through the commit history of lib/pleroma/http.ex)
(DIR) Post #B3zE64OEYtUsoqTmi0 by yonle@fedinet.waltuh.cyou
2026-03-06T16:39:34.996088Z
0 likes, 0 repeats
@phnt @cell now that you mention Oneric disregard it, That’s even strange and i don’t think this will give any good.
(DIR) Post #B3zE665WFRiQ5Njroe by yonle@fedinet.waltuh.cyou
2026-03-06T16:40:03.833614Z
0 likes, 0 repeats
@phnt @cell welp, another pleroma got birthed. not so harsh one coz i have skill issue with elixir
(DIR) Post #B3zE67LrYANo0MOQvg by phnt@pl.borked.technology
2026-03-06T16:44:38.423439Z
0 likes, 0 repeats
@yonle @cell Here are the corrected links (forgot that commits and files changed are broken after migration to forgejo):https://old.git.pleroma.social/pleroma/pleroma/-/merge_requests/4364 (uri encoding part 2)https://old.git.pleroma.social/pleroma/pleroma/-/merge_requests/4417 (emoji reacts/invalid emoji encoding)Here's the Akkoma emoji encoding issue: https://akkoma.dev/AkkomaGang/akkoma/issues/1042It got merged before a fix landed in Pleroma and I then forgot about it. I might chime in later that it is incorrect.