diff options
author | Alex Auvolat <alex@adnab.me> | 2020-10-04 21:20:22 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-10-04 21:20:22 +0200 |
commit | 07f9f640f0f18541760adb8746cd563a504d6609 (patch) | |
tree | 5e8bc029ace33b826d63546677096a65fc570732 /connector/irc | |
parent | 7130c7b7d6d0c4f49229df33825e2861eb463457 (diff) | |
download | easybridge-07f9f640f0f18541760adb8746cd563a504d6609.tar.gz easybridge-07f9f640f0f18541760adb8746cd563a504d6609.zip |
Looks like 2FA works in facebook messenger :o
Diffstat (limited to 'connector/irc')
-rw-r--r-- | connector/irc/irc.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/connector/irc/irc.go b/connector/irc/irc.go index 77388e7..1327eaa 100644 --- a/connector/irc/irc.go +++ b/connector/irc/irc.go @@ -271,6 +271,10 @@ func (irc *IRC) Send(event *Event) (string, error) { return "", nil } +func (irc *IRC) UserCommand(cm string) { + irc.handler.SystemMessage("Command not supported.") +} + func (irc *IRC) Close() { conn := irc.conn irc.conn = nil |