From: Ed Page Date: Sat, 26 Jun 2010 01:09:31 +0000 (-0500) Subject: Fixing a bug on text channel creation / reporting X-Git-Url: http://git.maemo.org/git/?a=commitdiff_plain;ds=sidebyside;h=1efc4f7ce81e252e1f956a4dc6864e6c3423be27;p=theonering Fixing a bug on text channel creation / reporting --- diff --git a/src/channel/text.py b/src/channel/text.py index c3df7d2..f4a9589 100644 --- a/src/channel/text.py +++ b/src/channel/text.py @@ -139,8 +139,8 @@ class TextChannel(tp.ChannelTypeText): newConversations = gvoice.conversations.filter_out_read(newConversations) newConversations = list(newConversations) postReadLen = len(newConversations) - if postReadLen < postReportedLen: - self._conn.log_to_user(__name__, "Dropped %s messages due to already being read" % (postReportedLen - postReadLen)) + if postReadLen < postSelfLen: + self._conn.log_to_user(__name__, "Dropped %s messages due to already being read" % (postSelfLen- postReadLen)) if not newConversations: _moduleLogger.debug( "New messages for %r have already been read externally" % (self._contactKey, )