Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
xabber-android
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
xabber-android
Commits
edbf6d10
Commit
edbf6d10
authored
Sep 09, 2014
by
Semyon
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1 from isotherm/XEP-0280
onPacket and getChat expect to receive a bare JID.
parents
7e15d03e
295df262
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
MessageManager.java
src/com/xabber/android/data/message/MessageManager.java
+1
-1
No files found.
src/com/xabber/android/data/message/MessageManager.java
View file @
edbf6d10
...
...
@@ -495,7 +495,7 @@ public class MessageManager implements OnLoadListener, OnPacketListener,
return
;
}
String
companion
=
message
.
getFrom
(
);
String
companion
=
Jid
.
getBareAddress
(
message
.
getFrom
()
);
boolean
processed
=
false
;
for
(
AbstractChat
chat
:
chats
.
getNested
(
account
).
values
())
{
if
(
chat
.
onPacket
(
companion
,
message
))
{
...
...
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