Index: src/routes/posts.js
===================================================================
--- src/routes/posts.js	(revision 484adf8ccf46e039e63d59739649349e39fc0115)
+++ src/routes/posts.js	(revision 3384e9568740c62ed4f832fb8c0a77e7e7006915)
@@ -627,5 +627,9 @@
 router.post('/tijdlijn/boost', requireSiteManager, async (req, res) => {
   const site = res.locals.site;
-  if (site) { try { await ActivityPubService.sendInteraction(site, 'boost', (req.body.note || '').toString(), (req.body.author || '').toString()); } catch (e) { /* ignore */ } }
+  const note = (req.body.note || '').toString();
+  if (site && note) {
+    try { await ActivityPubService.sendInteraction(site, 'boost', note, (req.body.author || '').toString()); } catch (e) { /* ignore */ }
+    ActivityPubService.markBoosted(site.slug, note); // also surface it in the Cirkel (mixed by date)
+  }
   res.redirect('/tijdlijn?success=' + encodeURIComponent('Geboost 🔁'));
 });
