1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 15:32:28 +02:00

Fix type assignment in logger page

Related issue:
- https://github.com/uBlockOrigin/uBlock-issues/issues/1349
This commit is contained in:
Raymond Hill 2020-11-17 11:18:59 -05:00
parent 922b05bbc4
commit a683297931
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -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;
}