Changeset 73045f9 in Klonkt


Ignore:
Timestamp:
06/26/2026 01:29:02 PM (2 months ago)
Author:
Robin Genis <roboburr@…>
Branches:
main
Children:
a6e6f63
Parents:
fda08c2
Message:

fix(volgend): featured toggle confirmation said 'Auto-boost' -> 'Uitgelicht'

Stale wording: toggling the per-account Featured checkbox flashed 'Auto-boost aan/uit'
(the old internal name). Now 'Uitgelicht ✨' / 'Niet meer uitgelicht', matching the UI.

Co-Authored-By: Claude <noreply@…>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/routes/posts.js

    rfda08c2 r73045f9  
    624624});
    625625
    626 // Toggle auto-boost ("feature this artist") on an account you already follow.
     626// Toggle "Featured" (show this account's posts in your Cirkel) on an account you follow.
    627627router.post('/tijdlijn/autoboost', requireSiteManager, (req, res) => {
    628628  const site = res.locals.site;
    629629  const actorUri = (req.body.actor_uri || '').toString();
    630630  if (site && actorUri) ActivityPubService.setAutoBoost(site.slug, actorUri, !!req.body.auto_boost);
    631   res.redirect('/volgend?success=' + encodeURIComponent(req.body.auto_boost ? 'Auto-boost aan 🔁' : 'Auto-boost uit'));
     631  res.redirect('/volgend?success=' + encodeURIComponent(req.body.auto_boost ? 'Uitgelicht ✨' : 'Niet meer uitgelicht'));
    632632});
    633633
Note: See TracChangeset for help on using the changeset viewer.