aboutsummaryrefslogtreecommitdiff
path: root/ext/js/application.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2024-02-19 07:30:17 -0500
committerGitHub <noreply@github.com>2024-02-19 12:30:17 +0000
commit2da866f982930c76d2317a3be426410683ecf5a2 (patch)
treee77ce545177ba398068cb63037096a56dea04e2c /ext/js/application.js
parent65fa65fc7765bc9a6557d3ce6f8bdcef5b5e0cf7 (diff)
Update eslint rules (#710)
Diffstat (limited to 'ext/js/application.js')
-rw-r--r--ext/js/application.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/js/application.js b/ext/js/application.js
index ec5c7e02..92815b8e 100644
--- a/ext/js/application.js
+++ b/ext/js/application.js
@@ -172,7 +172,7 @@ export class Application extends EventDispatcher {
ready() {
if (this._isReady) { return; }
this._isReady = true;
- this._webExtension.sendMessagePromise({action: 'applicationReady'});
+ void this._webExtension.sendMessagePromise({action: 'applicationReady'});
}
/** */