Index: src/services/ActivityPubService.js
===================================================================
--- src/services/ActivityPubService.js	(revision 14f54a7a8347f9521ad9b1f426f36b48b00993d6)
+++ src/services/ActivityPubService.js	(revision 0a93c15436f7a8f5a12389660d2feb0a690a17c6)
@@ -890,6 +890,8 @@
   if (poll.closed) note.closed = poll.endTime ? new Date(poll.endTime).toISOString() : new Date().toISOString();
   note.votersCount = voters;
-  delete note.attachment;   // media + poll are mutually exclusive on Mastodon
-  delete note.image;
+  delete note.attachment;   // media ATTACHMENTS + a poll are mutually exclusive on Mastodon
+  // Keep note.image: it's the cover, which Mastodon ignores on a Question anyway
+  // (same as on any Note) but Klonkt reads to show the cover in feeds/the Cirkel.
+  // Deleting it stripped the cover off every boosted poll.
   return note;
 }
