Skip to content
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.

Commit

Permalink
Fix bug in NameTransport introduced by c77cd04
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindkinsey committed Sep 21, 2013
1 parent 50790af commit 19933fb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Core.js
Original file line number Diff line number Diff line change
Expand Up @@ -768,7 +768,9 @@ function prepareTransportStack(config){
stackEls = [new easyXDM.stack.PostMessageTransport(config)];
break;
case "2":
config.remoteHelper = resolveUrl(config.remoteHelper);
if (config.isHost) {
config.remoteHelper = resolveUrl(config.remoteHelper);
}
stackEls = [new easyXDM.stack.NameTransport(config), new easyXDM.stack.QueueBehavior(), new easyXDM.stack.VerifyBehavior({
initiate: config.isHost
})];
Expand Down

0 comments on commit 19933fb

Please sign in to comment.