File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
src/main/java/org/jitsi/jigasi/xmpp Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1919 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
2020 <slf4j .version>1.7.36</slf4j .version>
2121 <junit .version>5.8.2</junit .version>
22- <smack .version>4.4.8-jitsi-1 </smack .version>
22+ <smack .version>4.4.8-jitsi-3 </smack .version>
2323 <jxmppVersion >1.0.3</jxmppVersion >
2424 <!-- Match jicoco's jetty version. -->
25- <jicoco .version>1.1-157-gb20b38c </jicoco .version>
25+ <jicoco .version>1.1-158-g9fcf1b7 </jicoco .version>
2626 <jetty .version>11.0.21</jetty .version>
2727 <oci-sdk .version>3.45.0</oci-sdk .version>
2828 </properties >
357357 <dependency >
358358 <groupId >${project.groupId} </groupId >
359359 <artifactId >jitsi-xmpp-extensions</artifactId >
360- <version >1.0-93-ge089d84 </version >
360+ <version >1.0-94-g29b94fa </version >
361361 </dependency >
362362 <dependency >
363363 <groupId >org.slf4j</groupId >
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ public class CallControlMucActivator
7878 private CallControl callControl = null ;
7979
8080 private ConfigurationService configService ;
81-
81+
8282 /**
8383 * The thread pool to serve all call control operations.
8484 */
@@ -88,7 +88,7 @@ public CallControlMucActivator()
8888 {
8989 super (ConfigurationService .class );
9090 }
91-
91+
9292 /**
9393 * Starts muc control component. Finds all xmpp accounts and listen for
9494 * new ones registered.
@@ -597,14 +597,14 @@ public IQ processIQ(DialIq packet, CallContext ctx)
597597 {
598598 logger .error (
599599 ctx + " Cannot send reply for dialIQ:"
600- + XmlStringBuilderUtil . toStringOpt ( packet ));
600+ + packet . toXML ( ));
601601 }
602602 }
603603 });
604604 }
605605 catch (RejectedExecutionException e )
606606 {
607- logger .error (ctx + " Failed to handle incoming dialIQ:" + XmlStringBuilderUtil . toStringOpt ( packet ));
607+ logger .error (ctx + " Failed to handle incoming dialIQ:" + packet . toXML ( ));
608608
609609 return IQ .createErrorResponse (packet , StanzaError .getBuilder ()
610610 .setCondition (internal_server_error )
@@ -619,7 +619,7 @@ private IQ processIQInternal(DialIq packet, CallContext ctx)
619619 {
620620 if (logger .isDebugEnabled ())
621621 {
622- logger .debug (ctx + " Processing a RayoIq: " + XmlStringBuilderUtil . toStringOpt ( packet ));
622+ logger .debug (ctx + " Processing a RayoIq: " + packet . toXML ( ));
623623 }
624624
625625 try
You can’t perform that action at this time.
0 commit comments