summaryrefslogtreecommitdiff
path: root/program/js/app.js
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-09-29 17:20:12 +0200
committerAleksander Machniak <alec@alec.pl>2013-09-29 17:20:12 +0200
commit34a5ae756251d72e147bc6a2ed7a322e562c825b (patch)
tree0c15737a5086e6eb695cceb5c4f5f327af87bd6f /program/js/app.js
parent38ab0be0931a66daf83452d77dc6bc6cd9df7caf (diff)
Fix issue where search result was reset after sending a message (#1489350)
Diffstat (limited to 'program/js/app.js')
-rw-r--r--program/js/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js
index 2d8be37d7..5ea01e750 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -3805,7 +3805,7 @@ function rcube_webmail()
// refresh the folder where sent message was saved or replied message comes from
if (folders && rc.env.task == 'mail' && rc.env.action == '' && $.inArray(rc.env.mailbox, folders) >= 0) {
// @TODO: try with 'checkmail' here when #1485186 is fixed. See also #1489249.
- rc.command('list', rc.env.mailbox);
+ rc.command('list');
}
}
setTimeout(function(){ window.close() }, 1000);