TeleMidia / ginga

A Ginga iTV middleware implementation by TeleMídia/PUC-Rio
http://ginga.org.br
GNU General Public License v2.0
51 stars 8 forks source link

Fix start over nested context without siblings #112

Closed alanlivio closed 6 years ago

alanlivio commented 6 years ago

The following code not work.

<ncl>
<body>
  <port id='port0' component='c1' interface='port1'/>
  <context id='c1'>
    <port id='port1' component='c2'/>
    <context id='c2'>
      <property name='p1' value='0'/>
      <port id='port2' component='m1'/>
      <port id='port3' component='m2'/>
      <media id='m1'/>
      <media id='m2'/>
    </context>
  </context>
</body>
</ncl>
alanlivio commented 6 years ago

The code above is working now.