B:BD[
10.1085] → [
10.1085:1155]
∅:D[
10.1155] → [
11.160:190]
B:BD[
11.160] → [
11.160:190]
B:BD[
11.190] → [
12.552:619]
println('${cmd.data['sender']} -> ${c['msgtype']} $room_id $body')
if body.starts_with('!') {
self.command(chat.System.matrix, 'matrix', room_id, body[1..])
} else {
// repeat in irc
system, room := self.room_match(chat.System.matrix, room_id)
chat.say(self.out_chan, system, self.config.matrix_host, room, body)
sender:= cmd.data['sender'].str()
println('$sender -> ${c['msgtype']} $room_id $body')
if sender != self.matrix.whoami {
if body.starts_with('!') {
self.command(chat.System.matrix, 'matrix', room_id, body[1..])
} else {
// repeat in irc
system, room := self.room_match(chat.System.matrix, room_id)
chat.say(self.out_chan, system, self.config.matrix_host, room, body)
}