diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-09-04 17:56:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-04 17:56:20 -0400 |
commit | 3efd4a1a94ddac6b0c9e0d3cf6fa7eb5621bf8a2 (patch) | |
tree | 29afe7b745b47e0323630c0f4debe00264fee001 | |
parent | 4cd1676ddc8cbbf1e8ae645f896a6604677c83fa (diff) |
Fix log context not being in the correct format (#761)
-rw-r--r-- | ext/mixed/js/yomichan.js | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |