diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-02-14 15:19:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-14 15:19:31 -0500 |
commit | efe8140f103179f50b610f182148b9427af99010 (patch) | |
tree | 94afdefddf9985d2ec11cdcd9a1e2638e2005b3d /ext/js/settings/popup-preview-frame-main.js | |
parent | 94201ed44ac1835637e77a6a7f583aca70bbf2d3 (diff) |
Api prepare refactor (#1391)
* Refactor API preparation
* Run yomichan.prepare manually in the entry point function
Diffstat (limited to 'ext/js/settings/popup-preview-frame-main.js')
-rw-r--r-- | ext/js/settings/popup-preview-frame-main.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/js/settings/popup-preview-frame-main.js b/ext/js/settings/popup-preview-frame-main.js index dcbc0d96..f61b26dc 100644 --- a/ext/js/settings/popup-preview-frame-main.js +++ b/ext/js/settings/popup-preview-frame-main.js @@ -24,7 +24,8 @@ (async () => { try { - api.forwardLogsToBackend(); + api.prepare(); + await yomichan.prepare(); const {tabId, frameId} = await api.frameInformationGet(); |