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
2c8b31c1
Commit
2c8b31c1
authored
Feb 25, 2017
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bugfix. `getAttribute` returns `null`
parent
2998ef81
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
src/utils.js
src/utils.js
+6
-5
No files found.
src/utils.js
View file @
2c8b31c1
...
...
@@ -246,15 +246,16 @@
isHeadlineMessage
:
function
(
message
)
{
var
from_jid
=
message
.
getAttribute
(
'
from
'
);
if
(
message
.
getAttribute
(
'
type
'
)
===
'
headline
'
||
if
(
message
.
getAttribute
(
'
type
'
)
===
'
headline
'
)
{
return
true
;
}
if
(
message
.
getAttribute
(
'
type
'
)
!==
'
error
'
&&
!
_
.
isNil
(
from_jid
)
&&
!
_
.
includes
(
from_jid
,
'
@
'
))
{
// Some servers (I'm looking at you Prosody) don't set the message
// type to "headline" when sending server messages. For now we
// check if an @ signal is included, and if not, we assume it's
// a headline message.
(
message
.
getAttribute
(
'
type
'
)
!==
'
error
'
&&
!
_
.
isUndefined
(
from_jid
)
&&
!
_
.
includes
(
from_jid
,
'
@
'
)
))
{
return
true
;
}
return
false
;
...
...
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