diff -r 2fdc9cc89502 -r bb6990c0dd1a org/sonews/storage/Article.java --- a/org/sonews/storage/Article.java Wed Jul 22 14:04:05 2009 +0200 +++ b/org/sonews/storage/Article.java Thu Aug 20 14:31:19 2009 +0200 @@ -119,7 +119,7 @@ final Object content = msg.getContent(); if(content instanceof String) { - this.body = ((String)content).getBytes(); + this.body = ((String)content).getBytes(getBodyCharset()); } else if(content instanceof Multipart) // probably subclass MimeMultipart {