From 191667e75b2cfc63df66b91de6b07d7eec4c6d1e Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Fri, 16 Feb 2007 14:39:49 -0500
Subject: [PATCH] Don't attempt to clear message list if it doesn't exist

---
 program/js/app.js |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/program/js/app.js b/program/js/app.js
index 1f89bd7..a961af3 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -1226,7 +1226,6 @@
       page = 1;
       add_url += '&_refresh=1';
       this.env.current_page = page;
-      this.message_list.clear_selection();
       this.show_messageframe(false);
       }
     
@@ -1239,6 +1238,8 @@
     // load message list remotely
     if (this.gui_objects.messagelist)
       {
+      if (mbox != this.env.mailbox)
+        this.message_list.clear_selection();
       this.list_mailbox_remote(mbox, page, add_url);
       return;
       }

--
Gitblit v1.9.1