summaryrefslogtreecommitdiff
path: root/ext/mixed/js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-09-04 17:56:20 -0400
committerGitHub <noreply@github.com>2020-09-04 17:56:20 -0400
commit3efd4a1a94ddac6b0c9e0d3cf6fa7eb5621bf8a2 (patch)
tree29afe7b745b47e0323630c0f4debe00264fee001 /ext/mixed/js
parent4cd1676ddc8cbbf1e8ae645f896a6604677c83fa (diff)
Fix log context not being in the correct format (#761)
Diffstat (limited to 'ext/mixed/js')
-rw-r--r--ext/mixed/js/yomichan.js2
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) {