mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Fix type assignment in logger page
Related issue: - https://github.com/uBlockOrigin/uBlock-issues/issues/1349
This commit is contained in:
parent
922b05bbc4
commit
a683297931
1 changed files with 1 additions and 1 deletions
|
|
@ -214,7 +214,7 @@ const LogEntry = function(details) {
|
|||
this[prop] = details[prop];
|
||||
}
|
||||
}
|
||||
this.type = details.stype;
|
||||
this.type = details.stype || details.type;
|
||||
if ( details.aliasURL !== undefined ) {
|
||||
this.aliased = true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue