org/sonews/storage/Article.java
changeset 12 bb6990c0dd1a
parent 3 2fdc9cc89502
child 16 5a4a41cfc0a3
     1.1 --- a/org/sonews/storage/Article.java	Mon Aug 17 11:00:51 2009 +0200
     1.2 +++ b/org/sonews/storage/Article.java	Thu Aug 20 14:31:19 2009 +0200
     1.3 @@ -119,7 +119,7 @@
     1.4      final Object content = msg.getContent();
     1.5      if(content instanceof String)
     1.6      {
     1.7 -      this.body = ((String)content).getBytes();
     1.8 +      this.body = ((String)content).getBytes(getBodyCharset());
     1.9      }
    1.10      else if(content instanceof Multipart) // probably subclass MimeMultipart
    1.11      {