mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 14:44:13 +00:00
Add comments explaining behavior when echo-message is not available
This commit is contained in:
commit
43a2b397a2
3 changed files with 6 additions and 0 deletions
|
@ -32,6 +32,8 @@ const input: PluginInputHandler = function ({irc}, chan, cmd, args) {
|
|||
|
||||
irc.action(chan.name, text);
|
||||
|
||||
// If the IRCd does not support echo-message, simulate the message
|
||||
// being sent back to us.
|
||||
if (!irc.network.cap.isEnabled("echo-message")) {
|
||||
irc.emit("action", {
|
||||
nick: irc.user.nick,
|
||||
|
|
|
@ -93,6 +93,8 @@ const input: PluginInputHandler = function (network, chan, cmd, args) {
|
|||
|
||||
network.irc.say(targetName, msg);
|
||||
|
||||
// If the IRCd does not support echo-message, simulate the message
|
||||
// being sent back to us.
|
||||
if (!network.irc.network.cap.isEnabled("echo-message")) {
|
||||
const parsedTarget = network.irc.network.extractTargetGroup(targetName);
|
||||
let targetGroup;
|
||||
|
|
|
@ -12,6 +12,8 @@ const input: PluginInputHandler = function (network, chan, cmd, args) {
|
|||
|
||||
network.irc.notice(targetName, message);
|
||||
|
||||
// If the IRCd does not support echo-message, simulate the message
|
||||
// being sent back to us.
|
||||
if (!network.irc.network.cap.isEnabled("echo-message")) {
|
||||
let targetGroup;
|
||||
const parsedTarget = network.irc.network.extractTargetGroup(targetName);
|
||||
|
|
Loading…
Reference in a new issue