Committed by
Gerrit Code Review
Fixed a defect in client/server interaction when creating host intent.
Change-Id: I09a8e12e5ff78349b7d57b492a018642ff5e7bad
Showing
1 changed file
with
2 additions
and
1 deletions
| ... | @@ -787,7 +787,8 @@ | ... | @@ -787,7 +787,8 @@ |
| 787 | function addIntentAction() { | 787 | function addIntentAction() { |
| 788 | sendMessage('addHostIntent', { | 788 | sendMessage('addHostIntent', { |
| 789 | one: getSelId(0), | 789 | one: getSelId(0), |
| 790 | - two: getSelId(1) | 790 | + two: getSelId(1), |
| 791 | + ids: [ getSelId(0), getSelId(1) ] | ||
| 791 | }); | 792 | }); |
| 792 | } | 793 | } |
| 793 | 794 | ... | ... |
-
Please register or login to post a comment