fixed url detection
This commit is contained in:
parent
304f147676
commit
b2ecaf9997
1 changed files with 2 additions and 1 deletions
|
@ -136,7 +136,8 @@ const checkImages = async (message, extraReturnTypes, video, sticker) => {
|
|||
const fileNameNoExtension = message.content.body.slice(0, message.content.body.lastIndexOf("."));
|
||||
type = {name: fileNameNoExtension, path: url, url: url, type: message.content.info.mimetype}
|
||||
}
|
||||
} else if (message.content.msgtype == "m.text") {
|
||||
}
|
||||
if (message.content.msgtype == "m.text") {
|
||||
let url = message.content.body
|
||||
url = url.replace(/.*\n\n/g, "")
|
||||
if (isValidUrl(url)){
|
||||
|
|
Loading…
Reference in a new issue