Closed GoogleCodeExporter closed 9 years ago
In ProvisioningParser.java:
Currently:
----------------------------
if (ChatAuthvalue == null) {
if ((ChatAuthvalue = getValueByParmName("ChatAuth", childnode)) != null) {
if (logger.isActivated()) {
logger.debug("ChatAuth = " + ChatAuthvalue);
}
if (ChatAuthvalue.equals("0")) {
RcsSettings.getInstance().writeParameter(
RcsSettingsData.CAPABILITY_IM_SESSION, RcsSettingsData.TRUE);
} else {
RcsSettings.getInstance().writeParameter(
RcsSettingsData.CAPABILITY_IM_SESSION, RcsSettingsData.FALSE);
}
continue;
}
}
----------------------------
Suggested:
----------------------------
if (ChatAuthvalue == null) {
if ((ChatAuthvalue = getValueByParmName("ChatAuth", childnode)) != null) {
if (logger.isActivated()) {
logger.debug("ChatAuth = " + ChatAuthvalue);
}
if (ChatAuthvalue.equals("1")) {
RcsSettings.getInstance().writeParameter(
RcsSettingsData.CAPABILITY_IM_SESSION, RcsSettingsData.TRUE);
} else {
RcsSettings.getInstance().writeParameter(
RcsSettingsData.CAPABILITY_IM_SESSION, RcsSettingsData.FALSE);
}
continue;
}
}
----------------------------
Original comment by pkurp...@gmail.com
on 31 Jan 2012 at 8:32
Original comment by jmauffret@gmail.com
on 3 Feb 2012 at 8:18
In next release
Original comment by jmauffret@gmail.com
on 6 Feb 2012 at 8:30
Original issue reported on code.google.com by
pkurp...@gmail.com
on 31 Jan 2012 at 8:17