Merge branch '2089-chat_send_without_mention' of verdnatura/salix into dev
gitea/salix/dev This commit looks good Details

This commit is contained in:
Carlos Jimenez Ruiz 2020-02-07 13:40:09 +00:00 committed by Gitea
commit 43941cb9ad
1 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,7 @@ module.exports = Self => {
const recipient = to.replace('@', '');
if (sender.name != recipient)
return sendMessage(sender, to, `@${sender.name}: ${message} `);
return sendMessage(sender, to, message);
};
async function sendMessage(sender, channel, message) {
@ -42,6 +42,7 @@ module.exports = Self => {
return sendAuth(uri, {
'channel': channel,
'avatar': avatar,
'alias': sender.nickname,
'text': message
}).catch(async error => {
if (error.statusCode === 401 && !this.resendAttempted) {