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
15f6649a
Commit
15f6649a
authored
Apr 20, 2017
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bugfix. OTR meta-messages were being shown in HTML5 notifications
parent
8c3c70c1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
docs/CHANGES.md
docs/CHANGES.md
+3
-2
src/utils.js
src/utils.js
+1
-1
No files found.
docs/CHANGES.md
View file @
15f6649a
...
...
@@ -9,8 +9,9 @@
-
sinon 2.1.0
-
eslint 3.19.0
-
Bugfix. MUC user's nickname wasn't being shown in HTML5 notification messages. [jcbrand]
-
CSS fix. Icon lock wasn't showing. [jcbrand]
-
Bugfix: MUC user's nickname wasn't being shown in HTML5 notification messages. [jcbrand]
-
Bugfix: OTR meta-messages were being shown in HTML5 notifications. [jcbrand]
-
CSS fix: Icon lock wasn't showing. [jcbrand]
-
#842 Persistent muc room creation not working [jcbrand]
-
#849
`TypeError: _converse.i18n.locale_data is undefined`
when reconnecting. [jcbrand]
...
...
src/utils.js
View file @
15f6649a
...
...
@@ -223,7 +223,7 @@
isOTRMessage
:
function
(
message
)
{
var
body
=
message
.
querySelector
(
'
body
'
),
text
=
(
!
_
.
isNull
(
body
)
?
body
.
text
Node
:
undefined
);
text
=
(
!
_
.
isNull
(
body
)
?
body
.
text
Content
:
undefined
);
return
text
&&
!!
text
.
match
(
/^
\?
OTR/
);
},
...
...
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