mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-04-21 05:44:47 +02:00
Merge branch '4.4'
This commit is contained in:
commit
1bfb9f34f1
3 changed files with 8 additions and 5 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: Smack CI
|
||||
name: CI
|
||||
|
||||
env:
|
||||
GRADLE_VERSION: 6.7.1
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Smack
|
||||
=====
|
||||
|
||||
[](https://travis-ci.com/github/igniterealtime/Smack) [](https://coveralls.io/r/igniterealtime/Smack) [](https://www.openhub.net/p/smack) [](https://inverse.chat/#converse/room?jid=smack@conference.igniterealtime.org)
|
||||
[](https://github.com/igniterealtime/Smack/actions?query=workflow%3A%22CI%22) [](https://coveralls.io/r/igniterealtime/Smack) [](https://www.openhub.net/p/smack) [](https://inverse.chat/#converse/room?jid=smack@conference.igniterealtime.org)
|
||||
|
||||
About
|
||||
-----
|
||||
|
|
|
@ -312,7 +312,10 @@ public final class EntityCapsManager extends Manager {
|
|||
// XEP-0115 specifies that a client SHOULD include entity capabilities
|
||||
// with every presence notification it sends.
|
||||
private void addCapsExtension(PresenceBuilder presenceBuilder) {
|
||||
CapsVersionAndHash capsVersionAndHash = getCapsVersionAndHash();
|
||||
final CapsVersionAndHash capsVersionAndHash = getCapsVersionAndHash();
|
||||
if (capsVersionAndHash == null) {
|
||||
return;
|
||||
}
|
||||
CapsExtension caps = new CapsExtension(entityNode, capsVersionAndHash.version, capsVersionAndHash.hash);
|
||||
presenceBuilder.overrideExtension(caps);
|
||||
}
|
||||
|
@ -434,10 +437,10 @@ public final class EntityCapsManager extends Manager {
|
|||
}
|
||||
|
||||
/**
|
||||
* Get our own caps version. The version depends on the enabled features.
|
||||
* Get our own caps version or {@code null} if none is yet set. The version depends on the enabled features.
|
||||
* A caps version looks like '66/0NaeaBKkwk85efJTGmU47vXI='
|
||||
*
|
||||
* @return our own caps version
|
||||
* @return our own caps version or {@code null}.
|
||||
*/
|
||||
public CapsVersionAndHash getCapsVersionAndHash() {
|
||||
return currentCapsVersion;
|
||||
|
|
Loading…
Add table
Reference in a new issue