aboutsummaryrefslogtreecommitdiff
path: root/ext/js/background/offscreen-main.js
diff options
context:
space:
mode:
Diffstat (limited to 'ext/js/background/offscreen-main.js')
-rw-r--r--ext/js/background/offscreen-main.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/ext/js/background/offscreen-main.js b/ext/js/background/offscreen-main.js
index dcbf978f..f85908bd 100644
--- a/ext/js/background/offscreen-main.js
+++ b/ext/js/background/offscreen-main.js
@@ -18,6 +18,9 @@
import {Offscreen} from './offscreen.js';
-(() => {
+/** Entry point. */
+async function main() {
new Offscreen();
-})();
+}
+
+await main();