Skip to content

Commit

Permalink
fix: incorrect class object -onAck
Browse files Browse the repository at this point in the history
  • Loading branch information
jonalan7 committed Feb 17, 2021
1 parent e9cee11 commit 1c18017
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/wapi/listeners/add-on-new-ack.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export function addOnNewAcks() {
if (!WAPI.callbackWile.checkObj(e.ack, e.id._serialized)) {
let key = WAPI.callbackWile.getObjKey(e.id._serialized);
if (key) {
WAPI.callbackWile.get()[key].ack = e.ack;
WAPI.callbackWile.module[key].ack = e.ack;
callback(e);
} else {
WAPI.callbackWile.addObjects(e.ack, e.id._serialized);
Expand Down

0 comments on commit 1c18017

Please sign in to comment.