From a683297931b43c16618f27ba144762c90b995083 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Tue, 17 Nov 2020 11:18:59 -0500 Subject: [PATCH] Fix type assignment in logger page Related issue: - https://github.com/uBlockOrigin/uBlock-issues/issues/1349 --- src/js/logger-ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/logger-ui.js b/src/js/logger-ui.js index f76ff5925..4265c37fc 100644 --- a/src/js/logger-ui.js +++ b/src/js/logger-ui.js @@ -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; }