From 712a37b9c1df3fc9e2298244b85d81d8f885d837 Mon Sep 17 00:00:00 2001 From: sigfawn Date: Tue, 13 Jan 2026 16:43:54 -0500 Subject: [PATCH] fix(mail_queue): add nil check for queue config (#437) * fix(beads): cache version check and add timeout to prevent cli lag * fix(mail_queue): add nil check for queue config Prevents potential nil pointer panic when queue config exists in map but has nil value. Added || queueCfg == nil check to the queue lookup condition in runMailClaim function. Fixes potential panic that could occur if a queue entry exists in config but with a nil value.