diff --git a/src/bitmessageqt/__init__.py b/src/bitmessageqt/__init__.py index 9543503f..dd67d211 100644 --- a/src/bitmessageqt/__init__.py +++ b/src/bitmessageqt/__init__.py @@ -2583,19 +2583,22 @@ class MyForm(QtGui.QMainWindow): '''select message from inbox where msgid=?''', msgid) if queryreturn != []: for row in queryreturn: - messageAtCurrentInboxRow, = row + messageText, = row - lines = messageAtCurrentInboxRow.split('\n') - for i in xrange(len(lines)): + lines = messageText.split('\n') + totalLines = len(lines) + for i in xrange(totalLines): if 'Message ostensibly from ' in lines[i]: lines[i] = '

%s

' % ( lines[i]) elif lines[i] == '------------------------------------------------------': lines[i] = '
' - content = '' - for i in xrange(len(lines)): - content += lines[i] - content = content.replace('\n\n', '

') + elif lines[i] == '' and (i+1) < totalLines and \ + lines[i+1] != '------------------------------------------------------': + lines[i] = '

' + content = ' '.join(lines) # To keep the whitespace between lines + content = shared.fixPotentiallyInvalidUTF8Data(content) + content = unicode(content, 'utf-8)') self.ui.textEditInboxMessage.setHtml(QtCore.QString(content)) def on_action_InboxMarkUnread(self):