Avatar

Level 4

so i've got a session all nicely authed and logged in, after which i'mdoing this:

_audioPublisher = new AudioPublisher();
_audioPublisher.connectSession = _connectSessionProxy.connectSession;
_audioPublisher.subscribe();


_audio = new AudioSubscriber();
_audio.connectSession = _connectSessionProxy.connectSession;
_audio.subscribe();


_audioPublisher.publish();

now, we've done a quick test, a friend and myself, and he could hear me perfectly but i only heard a single sentence from his end. i was the room owner, he a publisher. is there any reason why i should only have heard that single sentence?