summaryrefslogtreecommitdiff
path: root/client/channel_window.go
diff options
context:
space:
mode:
authorcitrons <citrons@mondecitronne.com>2025-06-09 15:20:34 -0500
committercitrons <citrons@mondecitronne.com>2025-06-09 15:20:34 -0500
commited7f662431a8e29a4ed27805c174ee72b4a7346a (patch)
tree08543381d7ef90a4cf82d0570beb55ca387a786f /client/channel_window.go
parentcd06a27e20717cdfbcc6840328f67405acc7c9e7 (diff)
fix message send in history view
Diffstat (limited to 'client/channel_window.go')
-rw-r--r--client/channel_window.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/client/channel_window.go b/client/channel_window.go
index 3dc208d..3aed4c0 100644
--- a/client/channel_window.go
+++ b/client/channel_window.go
@@ -119,10 +119,6 @@ func (cw *channelWindow) Send(text string) {
}
cb := func(response proto.Command) {
switch response.Kind {
- case "p":
- if len(response.Args) > 0 {
- cw.put(response.Args[0])
- }
case "fail":
if len(response.Args) > 0 {
globalApp.cmdWindow.fail(response.Args[0])