correctly retrieve content for message being retrieved from storage

This commit is contained in:
Myk Melez 2009-06-05 22:34:46 -07:00
Родитель 09542e6020
Коммит 2cd5051b8b
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -99,8 +99,8 @@ SnowlMessage.retrieve = function(id) {
statement.reset();
}
this.summary = this._getPart(PART_TYPE_SUMMARY);
this.content = this._getPart(PART_TYPE_CONTENT);
message.summary = message._getPart(PART_TYPE_SUMMARY);
message.content = message._getPart(PART_TYPE_CONTENT);
return message;
};