*Pass id property, not variable

This commit is contained in:
Derrick Hammer 2022-11-26 18:48:00 -05:00
parent dccdbbd13d
commit c4321d3026
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ export default class DHTCache extends EventEmitter {
this.addPeerHandler(item);
});
this._ensurePeer(id);
this._ensurePeer(this.id);
}
private _cache: Set<string>;