try {
String opid = message.getOperationId();
if (OP_GET_VERSION.equals(opid)) {
Map decodedMap = message.getDecodedMap();
String callback = MapUtils.getMapString(decodedMap, "callback", null);
if (callback != null && browser != null) {
browser.execute(callback + "('" + Constants.AZUREUS_VERSION + "')");
} else {
message.debug("bad or no callback param");
}
}
} catch (Throwable t) {
message.debug("handle Config message", t);
}