зеркало из https://github.com/mozilla/pjs.git
Bug 350365. "Error: this._reader has no properties" in JS console". r=mconnor
This commit is contained in:
Родитель
ea5ec8b0a2
Коммит
ff8749aaf4
|
@ -1144,7 +1144,6 @@ FeedProcessor.prototype = {
|
||||||
}
|
}
|
||||||
finally {
|
finally {
|
||||||
this._result = null;
|
this._result = null;
|
||||||
this._reader = null;
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -1174,7 +1173,12 @@ FeedProcessor.prototype = {
|
||||||
},
|
},
|
||||||
|
|
||||||
onStopRequest: function FP_onStopRequest(request, context, statusCode) {
|
onStopRequest: function FP_onStopRequest(request, context, statusCode) {
|
||||||
this._reader.onStopRequest(request, context, statusCode);
|
try {
|
||||||
|
this._reader.onStopRequest(request, context, statusCode);
|
||||||
|
}
|
||||||
|
finally {
|
||||||
|
this._reader = null;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
onDataAvailable:
|
onDataAvailable:
|
||||||
|
|
Загрузка…
Ссылка в новой задаче