polygram 0.12.0-rc.32 → 0.12.0-rc.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -249,10 +249,12 @@ function createQuestionHandlers({
249
249
  // shared: record an advanced result, post a receipt, then next-Q or resolve.
250
250
  async function advance(ctx, row, res, fromText) {
251
251
  const msgId = (JSON.parse(row.message_ids_json || '[]'))[0];
252
- if (!fromText) {
253
- await strip(row.chat_id, msgId, row.thread_id, `✓ ${res.receipt}`);
254
- await ack(ctx, 'Recorded');
255
- }
252
+ // Visible receipt on the question card — for BOTH a button tap and a typed "Other"
253
+ // answer. The typed-answer path used to skip this entirely, so a free-text answer (esp.
254
+ // the LAST question) left the card frozen on "Send your answer as a message." with no
255
+ // acknowledgment — "I answered and nothing happened" (prod: hire topic 2026-06-09).
256
+ await strip(row.chat_id, msgId, row.thread_id, `✓ ${res.receipt}`);
257
+ if (!fromText) await ack(ctx, 'Recorded'); // callback-query ack — button taps only
256
258
 
257
259
  if (res.done) {
258
260
  questions.updateState(row.id, res.state, false);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "polygram",
3
- "version": "0.12.0-rc.32",
3
+ "version": "0.12.0-rc.33",
4
4
  "description": "Telegram daemon for Claude Code that preserves the OpenClaw per-chat session model. Migration path for OpenClaw users moving to Claude Code.",
5
5
  "main": "lib/ipc/client.js",
6
6
  "bin": {