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
1238c972
Commit
1238c972
authored
Dec 02, 2014
by
Damian Minkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Doesn't filter iq results that needs to be delivered to local muc users.
parent
565460cb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
LocalMUCUser.java
src/java/org/jivesoftware/openfire/muc/spi/LocalMUCUser.java
+2
-2
No files found.
src/java/org/jivesoftware/openfire/muc/spi/LocalMUCUser.java
View file @
1238c972
...
@@ -368,8 +368,8 @@ public class LocalMUCUser implements MUCUser {
...
@@ -368,8 +368,8 @@ public class LocalMUCUser implements MUCUser {
}
}
public
void
process
(
IQ
packet
)
{
public
void
process
(
IQ
packet
)
{
// Ignore IQs of type ERROR
or RESULT
sent to a room
// Ignore IQs of type ERROR sent to a room
if
(
IQ
.
Type
.
error
==
packet
.
getType
()
||
IQ
.
Type
.
result
==
packet
.
getType
()
)
{
if
(
IQ
.
Type
.
error
==
packet
.
getType
())
{
return
;
return
;
}
}
lastPacketTime
=
System
.
currentTimeMillis
();
lastPacketTime
=
System
.
currentTimeMillis
();
...
...
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