Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
Openfire
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Openfire
Commits
95ed5680
Commit
95ed5680
authored
Mar 09, 2018
by
Guus der Kinderen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
OF-1508: Prevent empty entity caps hash lookups.
parent
abc1eb7f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
EntityCapabilitiesManager.java
...ftware/openfire/entitycaps/EntityCapabilitiesManager.java
+5
-2
No files found.
src/java/org/jivesoftware/openfire/entitycaps/EntityCapabilitiesManager.java
View file @
95ed5680
...
...
@@ -315,13 +315,16 @@ public class EntityCapabilitiesManager implements IQResultListener, UserEventLis
/**
* Returns the entity capabilities for a specific JID. The specified JID
* should be a full JID that identi
t
ied the entity's connection.
* should be a full JID that identi
f
ied the entity's connection.
*
* @param jid the full JID of entity
* @return the entity capabilities of jid.
* @return the entity capabilities of jid
, or null if these are unavailable
.
*/
public
EntityCapabilities
getEntityCapabilities
(
JID
jid
)
{
String
verAttribute
=
entityCapabilitiesUserMap
.
get
(
jid
);
if
(
verAttribute
==
null
)
{
return
null
;
}
return
entityCapabilitiesMap
.
get
(
verAttribute
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment