Skip to content

Commit

Permalink
Merge pull request #42 from amorygalili/fix-global-listener-bug
Browse files Browse the repository at this point in the history
Fix global listener bug
  • Loading branch information
virtuald authored Jul 13, 2020
2 parents b066661 + ab86ea6 commit ba2f3d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pynetworktables2js/js/networktables.js
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ const NetworkTables = new function () {
globalListeners.add(f);

if (immediateNotify === true) {
ntCache.forEach(function(k, v){
ntCache.forEach(function(v, k){
f(k, v, true);
});
}
Expand Down

0 comments on commit ba2f3d6

Please sign in to comment.