mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 14:44:13 +00:00
Fix '/msg' and '/say' commands
This commit is contained in:
parent
7ceffbe3c3
commit
f4dc6212e3
3 changed files with 14 additions and 11 deletions
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"port": 9000,
|
||||
"theme": "themes/example.css",
|
||||
"public": false
|
||||
"public": true
|
||||
}
|
||||
|
|
|
@ -6,24 +6,27 @@ module.exports = function(network, chan, cmd, args) {
|
|||
return;
|
||||
}
|
||||
|
||||
var client = this;
|
||||
var irc = network.irc;
|
||||
|
||||
if (args.length === 0 || args[0] === "") {
|
||||
return;
|
||||
}
|
||||
|
||||
var client = this;
|
||||
var irc = network.irc;
|
||||
|
||||
var target = args[0].charAt(0) == "#" ? args[0] : chan.name;
|
||||
if (target !== chan.name) {
|
||||
chan = _.findWhere(network.channels, {
|
||||
name: target
|
||||
});
|
||||
var target = "";
|
||||
if (cmd == "msg") {
|
||||
target = args.shift();
|
||||
if (args.length === 0) {
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
target = chan.name;
|
||||
}
|
||||
|
||||
var text = args.join(" ");
|
||||
irc.send(target, text);
|
||||
|
||||
if (typeof chan !== "undefined") {
|
||||
if (target == chan.name && typeof chan !== "undefined") {
|
||||
var msg = new Msg({
|
||||
type: Msg.Type.MESSAGE,
|
||||
from: irc.me,
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "shout",
|
||||
"description": "A web IRC client",
|
||||
"version": "0.8.6",
|
||||
"version": "0.8.7",
|
||||
"homepage": "http://github.com/erming/shout",
|
||||
"author": {
|
||||
"name": "Mattias Erming",
|
||||
|
|
Loading…
Reference in a new issue