From 3efd4a1a94ddac6b0c9e0d3cf6fa7eb5621bf8a2 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Fri, 4 Sep 2020 17:56:20 -0400 Subject: [PATCH] Fix log context not being in the correct format (#761) --- ext/mixed/js/yomichan.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/mixed/js/yomichan.js b/ext/mixed/js/yomichan.js index 9e049d41..217721bd 100644 --- a/ext/mixed/js/yomichan.js +++ b/ext/mixed/js/yomichan.js @@ -263,7 +263,7 @@ const yomichan = (() => { } _getLogContext() { - return this._getUrl(); + return {url: this._getUrl()}; } _onMessage({action, params}, sender, callback) {