From 24f66e82047af56aab3b95912b13104aa71fb956 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Wed, 24 Aug 2011 17:06:27 -0400 Subject: [PATCH] If user clicks in the empty part of a mailbox view, display a blank pane instead of an error. --- webcit/messages.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webcit/messages.c b/webcit/messages.c index e809b8ebb..207787d67 100644 --- a/webcit/messages.c +++ b/webcit/messages.c @@ -399,6 +399,8 @@ void embed_message(void) { StrBuf *CmdBuf = NULL; msgnum = StrBufExtract_long(WCC->Hdr->HR.ReqLine, 0, '/'); + if (msgnum <= 0) return; + switch (WCC->Hdr->HR.eReqType) { case eGET: -- 2.30.2