Bug 656708: Channel.URI is undefined. r=philiKON

This commit is contained in:
Richard Newman 2011-05-30 14:21:03 -07:00
Родитель e614da55de
Коммит 88c452c9ae
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -545,8 +545,9 @@ ChannelListener.prototype = {
this.abortTimer.clear();
let success = Components.isSuccessCode(status);
let uri = channel && channel.URI && channel.URI.spec || "<unknown>";
this._log.trace("Channel for " + channel.requestMethod + " " +
channel.URI.spec + ": isSuccessCode(" + status + ")? " +
uri + ": isSuccessCode(" + status + ")? " +
success);
if (this._data == '')
@ -563,7 +564,7 @@ ChannelListener.prototype = {
}
this._log.trace("Channel: flags = " + channel.loadFlags +
", URI = " + channel.URI.spec +
", URI = " + uri +
", HTTP success? " + channel.requestSucceeded);
this._onComplete(null, this._data);
},