Skip to content

Commit 8363482

Browse files
committed
Fix extra escape on proxied commands
1 parent 7143303 commit 8363482

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/proxy/proxy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ func (p *Proxy) process() {
170170
p.writeOutput(append([]byte{b}, original...))
171171
}
172172
if output != nil {
173-
p.writeOutput(output...)
173+
p.writeOutput(output)
174174
}
175175

176176
// can requestRedraw even if command errored, as we may not support a command but still want to requestRedraw

0 commit comments

Comments
 (0)