Skip to content

Commit

Permalink
Fix bug where re-selection of messages list record didn't work
Browse files Browse the repository at this point in the history
A regression in old commit 24fa5d3
  • Loading branch information
alecpl committed Jan 19, 2017
1 parent f789cb5 commit 7323f63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion program/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -1859,7 +1859,7 @@ function rcube_webmail()
if (list.multi_selecting || !this.env.contentframe)
return;

if (list.get_single_selection())
if (!list.get_single_selection())
return;

var win = this.get_frame_window(this.env.contentframe);
Expand Down

0 comments on commit 7323f63

Please sign in to comment.