Index: src/services/ActivityPubService.js
===================================================================
--- src/services/ActivityPubService.js	(revision 355364cee687f9ad4102b295d3349f08fbe10c5a)
+++ src/services/ActivityPubService.js	(revision c628db10ab7264c2115f59bdd80eefa38f5d7983)
@@ -241,4 +241,11 @@
   };
   if (attachment.length) note.attachment = attachment;
+  // Playable-audio posts suppress the cover attachment (player card). Still expose
+  // the cover via AS2 `image` so card/grid consumers (the Klonkt Cirkel) can show
+  // it — Mastodon ignores a Note's `image`, so the player card is unaffected.
+  if (post.cover_image_url && playable) {
+    const cov = abs(post.cover_image_url);
+    if (cov) note.image = { type: 'Image', mediaType: mediaType(cov), url: cov };
+  }
   return note;
 }
@@ -646,5 +653,13 @@
         const ai = actorInfo(await resolveActor(actorUri), actorUri);
         const html = HtmlSanitizerService.sanitize(o.content || '');
-        const media = JSON.stringify((Array.isArray(o.attachment) ? o.attachment : []).map((a) => ({ url: safeUrl(a && a.url), type: (a && a.mediaType) || '' })).filter((m) => m.url));
+        const _atts = (Array.isArray(o.attachment) ? o.attachment : []).map((a) => ({ url: safeUrl(a && a.url), type: (a && a.mediaType) || '' })).filter((m) => m.url);
+        // Fallback cover: a Note's `image` (set when the attachment was suppressed
+        // for a player-card post, e.g. hosted-audio posts).
+        if (!_atts.some((m) => !m.type || /image/i.test(m.type)) && o.image) {
+          const _im = Array.isArray(o.image) ? o.image[0] : o.image;
+          const _iu = safeUrl(typeof _im === 'string' ? _im : (_im && _im.url));
+          if (_iu) _atts.push({ url: _iu, type: (_im && _im.mediaType) || 'image/jpeg' });
+        }
+        const media = JSON.stringify(_atts);
         for (const s of subs) {
           tlStmts().ins.run(o.id, s.slug, actorUri, ai.name, ai.handle, ai.icon, ai.url, html, o.url || null, o.published || null, media);
