mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 09:07:54 +01:00
be ready to deal with invalid hostname
This commit is contained in:
parent
478155d4f6
commit
99be9f5c30
1 changed files with 6 additions and 0 deletions
|
@ -708,6 +708,12 @@ PageStore.prototype.filterRequestNoCache = function(context) {
|
|||
|
||||
PageStore.prototype.logRequest = function(context, result) {
|
||||
var requestHostname = context.requestHostname;
|
||||
// rhill 20150206:
|
||||
// be prepared to handle invalid requestHostname, I've seen this
|
||||
// happen: http://./
|
||||
if ( requestHostname === '' ) {
|
||||
requestHostname = context.pageHostname;
|
||||
}
|
||||
if ( this.hostnameToCountMap.hasOwnProperty(requestHostname) === false ) {
|
||||
this.hostnameToCountMap[requestHostname] = 0;
|
||||
this.contentLastModified = Date.now();
|
||||
|
|
Loading…
Reference in a new issue