Skip to content

Commit

Permalink
fix bug preventing multiple targets bound to one slider from being ad…
Browse files Browse the repository at this point in the history
…justed
  • Loading branch information
omriharel committed May 16, 2020
1 parent e05c903 commit ce9a7d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion session_map.go
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ func (m *sessionMap) add(value Session) {
if !ok {
m.m[key] = []Session{value}
} else {
existing = append(existing, value)
m.m[key] = append(existing, value)
}
}

Expand Down

0 comments on commit ce9a7d1

Please sign in to comment.