WhatsApp Auto-Reply Bug Silently Drops Media Images in OpenClaw 2026.4.2

WhatsApp Auto-Reply Media Delivery Failure
A user has identified a bug in OpenClaw version 2026.4.2 where WhatsApp auto-replies containing media attachments fail to deliver images. The issue occurs specifically when using the MEDIA:./path/to/image.png format in auto-reply responses.
Problem Details
The bug manifests only under specific conditions:
- WhatsApp auto-reply with
MEDIA:format → image silently dropped ❌ - WhatsApp auto-reply with text only → works ✅
- Same
MEDIA:format on Telegram auto-reply → image delivered ✅ openclaw agent --deliver→ image delivered on WhatsApp ✅openclaw message send --media→ image delivered ✅
The exact same agent configuration, OpenClaw version, and chart-mpl skill work perfectly on Telegram, indicating the issue is WhatsApp-specific.
Root Cause
Code tracing reveals the problem originates in the WhatsApp deliver callback function in login-DW2Orybl.js. The function filters out all non-final payloads:
deliver: async (payload, info) => { if (info.kind !== "final") return;This filtering logic appears to be preventing media attachments from being processed in auto-reply scenarios on WhatsApp.
This type of platform-specific delivery bug is common when working with multiple messaging APIs, as each service has different payload handling requirements and webhook behaviors.
📖 Read the full source: r/openclaw
👀 See Also

Defining AI Agents: The Workflow Test
A Reddit discussion questions whether many AI agent products are essentially chatbots with a to-do list, proposing a test based on their ability to complete workflows across multiple tools without manual intervention.

Claude-Code v2.1.88 Release: Flicker-Free Rendering, Permission Hooks, and Critical Fixes
Claude-Code v2.1.88 introduces a flicker-free rendering option via CLAUDE_CODE_NO_FLICKER=1, adds a PermissionDenied hook for auto mode retries, and fixes memory leaks, crashes, and rendering issues across Windows, macOS, and Linux terminals.

AI Art Critics Fail to Spot Real Monet Painting, Exposing Hollow Critique
A user posted a real Monet painting as AI-generated, and critics wrote detailed breakdowns of its 'flaws' — highlighting the gap between confident critique and actual understanding of AI vs. human art.

Longitudinal study finds AI productivity gains at 10%, not 10x
A longitudinal study tracking 40 companies from November 2024 through February 2026 found AI usage increased by 65% on average, but pull request throughput only increased by 9.97%. The data suggests coding was never the primary bottleneck in software development.