Skip to content

Commit 513f328

Browse files
authored
chore: Bump jicoco, jitsi-xmpp-extensions, smack. (#599)
1 parent 2c00276 commit 513f328

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
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>
@@ -357,7 +357,7 @@
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>

src/main/java/org/jitsi/jigasi/xmpp/CallControlMucActivator.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)