()
| 670 | m.verifyNudged = false |
| 671 | // The queue-refusal hint says "send it when the turn ends"; that moment is |
| 672 | // now, so the advice would be stale from the next render on. |
| 673 | if m.status == queueSlashHint { |
| 674 | m.status = "" |
| 675 | } |
| 676 | // A retry hint dies with its turn: a Ctrl+C during the backoff wait would |
| 677 | // otherwise leave "retry 1/3 in 15s" stranded in the idle status bar. |
| 678 | if m.retrying { |
| 679 | m.retrying = false |
| 680 | m.status = "" |
| 681 | } |
| 682 | } |
| 683 | |
| 684 | func (m *Model) buildMessages() []chmctx.Message { |
no test coverage detected