From: Michael M Slusarz Date: Sat, 11 Apr 2009 22:13:10 +0000 (-0600) Subject: Fix logic. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=ef8fe979d00e898ad4b2df3865a716075820f498;p=horde.git Fix logic. --- 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]);