today’s (later than planned) upgrade to lemmy 0.19.2 provisionally appears to have gone alright. if you see excessive amounts of jank (and your page footer can’t decide what version of lemmy it’s running on, IE it shows separate FE and BE versions), clear your browser cache and cookies since lemmy doesn’t seem to do that cleanly on its own

next up I’m planning to deploy the Proton frontend as an alternative to the default and I’m also going to start pushing code to codeberg (most likely) so stay tuned for that

  • sue_me_please@awful.systems
    link
    fedilink
    English
    arrow-up
    5
    ·
    edit-2
    8 months ago

    Not sure if this is related, but any time I try to upvote or downvote a comment, I get this error:

    Error: invalid_bot_action
    
    • self@awful.systemsOPM
      link
      fedilink
      English
      arrow-up
      3
      ·
      8 months ago

      huh, I’ve never seen that before. let me look into this new jank (maybe your account somehow got marked as a bot account?)

  • carlitoscohones@awful.systems
    link
    fedilink
    English
    arrow-up
    4
    ·
    edit-2
    8 months ago

    Sharing just in case anyone else needs to see it - Safari on Mac gave me all of those login / logout things, and would not show any posts at all, just an error screen. I couldn’t even see this note to know what the problem was, even when refreshing. I went to a clean Firefox browser, saw this, cleared Safari history and all is well.

    Mac / OSX Sonoma.

    • sc_griffith@awful.systems
      link
      fedilink
      English
      arrow-up
      3
      ·
      8 months ago

      checked the patch notes and that part is intentional. there was apparently bad 2fa UI before, which got people locked out, the reset is intended to rescue their accounts

  • froztbyte@awful.systems
    link
    fedilink
    English
    arrow-up
    3
    ·
    8 months ago

    Just in case anyone else runs into it: looks like this issue also completely wedged my install of Mlem - had to nuke the app from phone and reinstall, its sign-in procedure didn’t cope with this failure mode and it had no way to forget about account without also wanting to remotely delete an account (which I figure probably would’ve failed because no auth token, but I didn’t chance it)

    I’ll log a bug their side when I have some headspace to write it up

  • self@awful.systemsOPM
    link
    fedilink
    English
    arrow-up
    2
    ·
    8 months ago

    I’ve deployed a fix for the JWT bug that’s been breaking all our users, as well as the broken cache behavior. special thanks to the lemm.ee infrastructure admin/professional software developer/lemmy contributor below who bravely sacrificed their posting privileges by pointing out the source of the cache problem in the most jackass way possible and then insisting on a solution that doesn’t work for our instance

    there’s one remaining lemmy-ui bug on my end I haven’t been able to track down, and that’s the weird half-logged-in session thing where depending on how you interact with the page, your session might disappear. that one stumps me to be honest; I’m going to try and debug with dev tools later, since currently it’s only happening in Safari on my phone.

  • David Gerard@awful.systems
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    8 months ago

    this is wild, i can successfully log in and everything is fine in a chromium incognito window but not in a normal window even after clearing cookies and cache

    EDIT: chrome://settings/content/all shows the cookie and I can delete it

    firefox works after i just clear the cache

    MOBILE SUGGESTION: if you have android, why aren’t you using firefox with ublock origin already

    lemmy on urbit on windows

  • Sailor Sega Saturn@awful.systems
    link
    fedilink
    English
    arrow-up
    1
    ·
    8 months ago

    I have used my immense technical skills nurtured over the course of decades to bypass the error page.

    I am pleased to report that I have successfully cleared my cookies.

  • Phil@awful.systems
    link
    fedilink
    English
    arrow-up
    0
    ·
    8 months ago

    I’m impressed by the way some threads now have “-2” new comments. How does that work?

  • bitofhope@awful.systems
    link
    fedilink
    English
    arrow-up
    0
    ·
    8 months ago

    In today’s episode of awful systems I found outt my phone’s browser can’t manage individual site cookies. Deleting them is an all-or-nothing deal.

    Tfw the mono no aware hits you when you have to log out of everything just to make fun of techbros.

    • self@awful.systemsOPM
      link
      fedilink
      English
      arrow-up
      0
      ·
      8 months ago

      christ I’m sorry. my phone probably needs the same — the mother fucking cache-control immutable header some lemmy dev decided to hardcode into lemmy-ui’s app server seems to have triggered a bug in my phone where I’m both logged in and not simultaneously, and switching tab groups logs me out until I open a new tab

      since all this unpleasantness is due to a bad cache-control header, hopefully it should all clear up when caches expire and pull in the new version of the site and corrected cache settings… in like 20 hours. fuck

        • self@awful.systemsOPM
          link
          fedilink
          English
          arrow-up
          1
          ·
          8 months ago

          oh yeah! it’s been causing a ridiculous number of problems for our instance and others (I thought beehaw was down for a long time but I’m realizing it was this cache issue) and basically makes upgrading to a backend that isn’t completely compatible with the previous backend impossible to do cleanly. and yet, I think I might have been the only one who’s discovered this issue, judging by the lack of relevant GitHub issues or other chatter about it.

          as for why some lemmy dev chose immutable, all I can figure is they saw that rust is immutable (and I like rust a lot, but these are not good rust devs) and figured that meant immutability is a good thing everywhere regardless of the actual implementation. or maybe Google’s SEO tools insisted they needed it, and they didn’t read on or understand the versioned path requirement for cache busting? you’d think the devs of a federated platform would focus on literally anything other than SEO, but none of these folks had a plan.

          anyway… only 7 hours remain until everyone’s browser hopefully marks the old content stale

          • sunaurus@lemm.ee
            link
            fedilink
            English
            arrow-up
            0
            arrow-down
            1
            ·
            8 months ago

            Lemmy-ui immutable static files have a cache busting hash in their path:

            On awful.systems, I see you have replaced this hash with an undefined:

            By the way, clean upgrades are completely possible if you know what you’re doing. I frequently roll out new upgrades on lemm.ee without any downtime (so some servers running 0.19.1, some running 0.19.2 for example).

            • self@awful.systemsOPM
              link
              fedilink
              English
              arrow-up
              0
              ·
              8 months ago

              By the way, clean upgrades are completely possible if you know what you’re doing.

              oh do tell

                • self@awful.systemsOPM
                  link
                  fedilink
                  English
                  arrow-up
                  0
                  ·
                  8 months ago

                  no thx but while we’re here

                  the reason why the cache busting broke is because I’m building for an immutable environment (NixOS sans docker) and my builds don’t have .git cause it’s a source of mutability. lemmy’s cache busting utterly breaks without git but it still incorrectly marks the files as immutable, breaking a ton of users. utterly broken behavior.

                  but the very funny part is the cache behavior isn’t even the bug that’s breaking everything right now. that’s this bug: https://github.com/LemmyNet/lemmy-ui/issues/2325 which you didn’t mention as a factor while you were trying your best to sound smart

                  also, have you ever gotten banned from an instance for being a shithead reply guy before? I’m betting this ain’t the first time

      • bitofhope@awful.systems
        link
        fedilink
        English
        arrow-up
        1
        ·
        edit-2
        8 months ago

        Haha wow, now it’s hitting me with the same thing I think. Keeps logging me out randomly and putting me in a state of Schrödinger’s session cookie.

        All hail the jank!

        Edit: seems to happen if I refresh the page.

        • self@awful.systemsOPM
          link
          fedilink
          English
          arrow-up
          1
          ·
          8 months ago

          yep, exactly what I’m seeing except it stops when I open awful.systems in a new tab, but happens again if I switch tab groups. I don’t know how they managed this