diff options
Diffstat (limited to 'mailnews/extensions')
-rw-r--r-- | mailnews/extensions/newsblog/content/FeedItem.js | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/mailnews/extensions/newsblog/content/FeedItem.js b/mailnews/extensions/newsblog/content/FeedItem.js index 5863c420a..c3f9691f8 100644 --- a/mailnews/extensions/newsblog/content/FeedItem.js +++ b/mailnews/extensions/newsblog/content/FeedItem.js @@ -225,25 +225,6 @@ FeedItem.prototype = FeedUtils.RDF_LITERAL_TRUE, true); }, - mimeEncodeSubject: function(aSubject, aCharset) - { - // This routine sometimes throws exceptions for mis-encoded data so - // wrap it with a try catch for now. - let newSubject; - try - { - newSubject = mailServices.mimeConverter.encodeMimePartIIStr_UTF8(aSubject, - false, - aCharset, 9, 72); - } - catch (ex) - { - newSubject = aSubject; - } - - return newSubject; - }, - writeToFolder: function() { FeedUtils.log.trace("FeedItem.writeToFolder: " + this.identity + @@ -261,9 +242,7 @@ FeedItem.prototype = // Compress white space in the subject to make it look better. Trim // leading/trailing spaces to prevent mbox header folding issue at just // the right subject length. - title = title.replace(/[\t\r\n]+/g, " ").trim(); - - this.title = this.mimeEncodeSubject(title, this.characterSet); + this.title = title.replace(/[\t\r\n]+/g, " ").trim(); // If the date looks like it's in W3C-DTF format, convert it into // an IETF standard date. Otherwise assume it's in IETF format. |