diff options
Diffstat (limited to 'background')
-rw-r--r-- | background/nonce_store.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/background/nonce_store.js b/background/nonce_store.js index 9370876..e5a0e78 100644 --- a/background/nonce_store.js +++ b/background/nonce_store.js @@ -19,7 +19,7 @@ function retrieve_nonce(tabId, frameId, update) console.log('Nonce for ' + code + ' ' + (update ? 'created/updated' : 'requested')); if (update) nonces[code] = gen_nonce(); - + return nonces[code]; } |