Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
ad036ea7
Commit
ad036ea7
authored
8 years ago
by
Viktor Liu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove split of fullname. Fixes #609
parent
55593245
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
docs/CHANGES.md
docs/CHANGES.md
+2
-0
src/converse-core.js
src/converse-core.js
+3
-1
No files found.
docs/CHANGES.md
View file @
ad036ea7
...
...
@@ -25,6 +25,8 @@
-
#592 Add random resource for
`auto_login`
, add method generateResource to generate random resource [davec82]
-
#598 Add option
`synchronize_availability`
[davec82]
-
#600 Fix change xmpp status also on icon-status click [davec82]
-
#616 converse-otr should depend on converse-minimize [jcbrand]
-
#609 Remove split of fullname [lixmal]
## 0.10.1 (2016-02-06)
...
...
This diff is collapsed.
Click to expand it.
src/converse-core.js
View file @
ad036ea7
...
...
@@ -1241,7 +1241,9 @@
}
else
{
from
=
Strophe
.
getBareJidFromJid
(
$message
.
attr
(
'
from
'
));
}
fullname
=
(
_
.
isEmpty
(
fullname
)
?
from
:
fullname
).
split
(
'
'
)[
0
];
if
(
_
.
isEmpty
(
fullname
))
{
fullname
=
from
;
}
if
(
delayed
)
{
stamp
=
$delay
.
attr
(
'
stamp
'
);
time
=
stamp
;
...
...
This diff is collapsed.
Click to expand it.
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