Repository: openmeetings Updated Branches: refs/heads/master 279ab67ee -> bd81bd0f4
[OPENMEETINGS-1764] nettest for RTMPS is fixed Project: http://git-wip-us.apache.org/repos/asf/openmeetings/repo Commit: http://git-wip-us.apache.org/repos/asf/openmeetings/commit/bd81bd0f Tree: http://git-wip-us.apache.org/repos/asf/openmeetings/tree/bd81bd0f Diff: http://git-wip-us.apache.org/repos/asf/openmeetings/diff/bd81bd0f Branch: refs/heads/master Commit: bd81bd0f46d993cf8040b58efcf384dc948c5300 Parents: 279ab67 Author: Maxim Solodovnik <[email protected]> Authored: Mon Nov 20 11:41:09 2017 +0700 Committer: Maxim Solodovnik <[email protected]> Committed: Mon Nov 20 11:41:36 2017 +0700 ---------------------------------------------------------------------- .../org/apache/openmeetings/nettest/PortAvailabilityTest.mxml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/openmeetings/blob/bd81bd0f/openmeetings-flash/src/main/flex/org/apache/openmeetings/nettest/PortAvailabilityTest.mxml ---------------------------------------------------------------------- diff --git a/openmeetings-flash/src/main/flex/org/apache/openmeetings/nettest/PortAvailabilityTest.mxml b/openmeetings-flash/src/main/flex/org/apache/openmeetings/nettest/PortAvailabilityTest.mxml index 9a300c6..fa1615f 100644 --- a/openmeetings-flash/src/main/flex/org/apache/openmeetings/nettest/PortAvailabilityTest.mxml +++ b/openmeetings-flash/src/main/flex/org/apache/openmeetings/nettest/PortAvailabilityTest.mxml @@ -63,10 +63,12 @@ } }; this.log(": " + lbl('report.start') + " " + url); + var nativeSsl:Boolean = 'best' === app.params.proxy; + nc.proxyType = nativeSsl ? 'best' : 'none'; nc.connect(url, { sid: "noclient" , roomClient: true - , nativeSsl: 'best' === app.params.proxy + , nativeSsl: nativeSsl }); }
