From ef8fe979d00e898ad4b2df3865a716075820f498 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Sat, 11 Apr 2009 16:13:10 -0600 Subject: [PATCH] Fix logic. --- imp/js/src/DimpBase.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imp/js/src/DimpBase.js b/imp/js/src/DimpBase.js index d20cc602d..c84502983 100644 --- a/imp/js/src/DimpBase.js +++ b/imp/js/src/DimpBase.js @@ -922,7 +922,7 @@ var DimpBase = { // There is a chance that the message may have been marked // as unseen since first being viewed. If so, we need to // explicitly flag as seen here. - if (this.hasFlag('\\seen', data)) { + if (!this.hasFlag('\\seen', data)) { this.flag('\\seen', true); } return this._loadPreviewCallback(this.ppcache[pp_uid]); -- 2.11.0