Skip to content

Commit

Permalink
Fix a bug with sections not being displayed properly for new packets
Browse files Browse the repository at this point in the history
  • Loading branch information
Myles committed Mar 30, 2017
1 parent 1a456d0 commit ad2130f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ var packetHandler = {
if (Object.keys(newJson).length > 0) {
for (var newKey in newJson.changedPackets) {
var val = newJson.changedPackets[newKey];
packets[value.state][value.direction][val.id] = {
packets[val.state][val.direction][val.id] = {
old: {
id: -1
},
Expand Down

0 comments on commit ad2130f

Please sign in to comment.