Update installer.

git-svn-id: http://svn.igniterealtime.org/svn/repos/spark/trunk@7757 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Derek DeMoro
2007-03-28 20:03:46 +00:00
committed by derek
parent f1af0afb46
commit 4cbf223499
2 changed files with 4 additions and 4 deletions

View File

@ -321,7 +321,7 @@
</uninstallerStartup>
</installerGui>
<mediaSets>
<win32 name="Windows" id="2" mediaFileName="" installDir="Spark" overridePrincipalLanguage="true" requires64bit="false" runPostProcessor="false" postProcessor="" failOnPostProcessorError="false" includedJRE="windows-x86-1.6.0" manualJREEntry="false" bundleType="1" jreURL="" jreFtpURL="" jreShared="false" customInstallBaseDir="" createUninstallIcon="true" contentFilesType="1" downloadURL="" runAsAdmin="false">
<win32 name="Windows" id="2" mediaFileName="" installDir="Spark" overridePrincipalLanguage="true" requires64bit="false" runPostProcessor="false" postProcessor="" failOnPostProcessorError="false" includedJRE="windows-x86-1.6.0" manualJREEntry="false" bundleType="1" jreURL="" jreFtpURL="" jreShared="false" customInstallBaseDir="" createUninstallIcon="true" contentFilesType="1" downloadURL="" runAsAdmin="true">
<excludedLaunchers />
<excludedComponents />
<overriddenPrincipalLanguage id="en" customLocalizationFile="" />

View File

@ -83,9 +83,9 @@ public class JinglePlugin implements Plugin, Phone {
STUN stun = STUN.getSTUNServer(SparkManager.getConnection());
if (stun != null) {
List<STUN.StunServerAddress> servers = stun.getServers();
if(servers.size()>0){
stunServer = servers.get(0).getServer();
stunPort = Integer.parseInt(servers.get(0).getPort());
if (servers.size() > 0) {
stunServer = servers.get(0).getServer();
stunPort = Integer.parseInt(servers.get(0).getPort());
}
}
}