added /api/info/:id route
This commit is contained in:
parent
81534d2c13
commit
97ad674be2
20 changed files with 74 additions and 38 deletions
|
@ -83,10 +83,10 @@ export default class Keychain extends Nanobus {
|
|||
}
|
||||
|
||||
set nonce(n) {
|
||||
if (n !== this.nonce) {
|
||||
this.emit('nonceChanged', n);
|
||||
if (n && n !== this._nonce) {
|
||||
this._nonce = n;
|
||||
this.emit('nonceChanged');
|
||||
}
|
||||
this._nonce = n;
|
||||
}
|
||||
|
||||
setIV(ivB64) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue