Skip to content

Commit

Permalink
Use ␊ character to represent line feed as a separator
Browse files Browse the repository at this point in the history
  • Loading branch information
jnmoyne committed Aug 19, 2023
1 parent 5ff32a0 commit 7d3479a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/stream_command.go
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ func (c *streamCmd) viewAction(_ *fisk.ParseContext) error {
for k, vs := range msg.Header {
for _, v := range vs {
if k == "Nats-Stream-Source" {
v = strings.ReplaceAll(v, "\f", "\u21B5")
v = strings.ReplaceAll(v, "\f", "\u240A")
}

fmt.Printf(" %s: %s\n", k, v)
Expand Down

0 comments on commit 7d3479a

Please sign in to comment.