Bug 1221754 - Include encoding in HAR exported data; r=jryans

This commit is contained in:
Jan Odvarko 2015-11-09 13:46:12 +01:00
Родитель c6ecb912fb
Коммит 10557497eb
2 изменённых файлов: 2 добавлений и 0 удалений

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

@ -312,6 +312,7 @@ HarBuilder.prototype = {
let responseContent = file.responseContent;
if (responseContent && responseContent.content) {
content.size = responseContent.content.size;
content.encoding = responseContent.content.encoding;
}
let includeBodies = this._options.includeResponseBodies;

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

@ -2080,6 +2080,7 @@ NetworkEventActor.prototype =
updateType: "responseContent",
mimeType: aContent.mimeType,
contentSize: aContent.size,
encoding: aContent.encoding,
transferredSize: aContent.transferredSize,
discardResponseBody: aDiscardedResponseBody,
};