diff options
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/fg/js/popup-proxy-host.js | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/ext/fg/js/popup-proxy-host.js b/ext/fg/js/popup-proxy-host.js index 793d3949..6f1c13c6 100644 --- a/ext/fg/js/popup-proxy-host.js +++ b/ext/fg/js/popup-proxy-host.js @@ -25,7 +25,6 @@  class PopupProxyHost {      constructor() {          this._popups = new Map(); -        this._nextId = 0;          this._apiReceiver = null;          this._frameIdPromise = null;      } @@ -76,7 +75,7 @@ class PopupProxyHost {          // New unique id          if (id === null) { -            id = this._nextId++; +            id = yomichan.generateId(16);          }          // Create new popup |