Fixes #878. Ending slash in link not recognized
This commit is contained in:
parent
2c8c872a65
commit
edc4c1f158
@ -6,6 +6,7 @@
|
|||||||
|
|
||||||
- Various fixes for IE11.
|
- Various fixes for IE11.
|
||||||
- Could not register on Ejabberd 18. `"Missing attribute 'id' in tag qualified by namespace 'jabber:client'"`
|
- Could not register on Ejabberd 18. `"Missing attribute 'id' in tag qualified by namespace 'jabber:client'"`
|
||||||
|
- #878 Ending slash in link not recognized
|
||||||
- #959 Add padding for the iPhone X (to the mobile CSS).
|
- #959 Add padding for the iPhone X (to the mobile CSS).
|
||||||
- #993 `moment.format` is not a function error when sending a message.
|
- #993 `moment.format` is not a function error when sending a message.
|
||||||
- #994 TypeError when using the `user.login` API.
|
- #994 TypeError when using the `user.login` API.
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
const b64_sha1 = Strophe.SHA1.b64_sha1;
|
const b64_sha1 = Strophe.SHA1.b64_sha1;
|
||||||
Strophe = Strophe.Strophe;
|
Strophe = Strophe.Strophe;
|
||||||
|
|
||||||
const URL_REGEX = /\b(https?:\/\/|www\.|https?:\/\/www\.)[^\s<>]{2,200}\b/g;
|
const URL_REGEX = /\b(https?:\/\/|www\.|https?:\/\/www\.)[^\s<>]{2,200}\b[/]/g;
|
||||||
|
|
||||||
const logger = _.assign({
|
const logger = _.assign({
|
||||||
'debug': _.get(console, 'log') ? console.log.bind(console) : _.noop,
|
'debug': _.get(console, 'log') ? console.log.bind(console) : _.noop,
|
||||||
|
Loading…
Reference in New Issue
Block a user