mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-09-11 01:59:38 +02:00
Add (failing) Jingle S5B test
This commit is contained in:
parent
45563b75fe
commit
22a7e38f66
2 changed files with 30 additions and 5 deletions
|
@ -131,7 +131,7 @@ public final class JingleFileTransferManager extends Manager implements JingleDe
|
|||
public void notifyIncomingFileOfferListeners(JingleIncomingFileOffer offer) {
|
||||
LOGGER.log(Level.INFO, "Incoming File transfer: [" + offer.getNamespace() + ", "
|
||||
+ offer.getParent().getTransport().getNamespace() + ", "
|
||||
+ offer.getParent().getSecurity().getNamespace());
|
||||
+ (offer.getParent().getSecurity() != null ? offer.getParent().getSecurity().getNamespace() : "") + "]");
|
||||
for (IncomingFileOfferListener l : offerListeners) {
|
||||
l.onIncomingFileOffer(offer);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue