diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-08-22 15:49:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-22 15:49:24 -0400 |
commit | f0c974d319d9fb4c50c9a4a8f665a642edb77d58 (patch) | |
tree | 71855fd155b8072e9ce627a6643938065ef44b5d /ext/bg/js/backend.js | |
parent | 9fa0f2a56a79159227f1f42455157fe9c84132d3 (diff) |
Move generateId to core.js (#748)
Diffstat (limited to 'ext/bg/js/backend.js')
-rw-r--r-- | ext/bg/js/backend.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/backend.js b/ext/bg/js/backend.js index 65f4d6b3..810370c4 100644 --- a/ext/bg/js/backend.js +++ b/ext/bg/js/backend.js @@ -739,7 +739,7 @@ class Backend { if (typeof tabId !== 'number') { throw new Error('Sender has invalid tab ID'); } const frameId = sender.frameId; - const id = yomichan.generateId(16); + const id = generateId(16); const details = { name: 'action-port', id |