From 2453375721832304b512380e6610de2c3d765bd5 Mon Sep 17 00:00:00 2001 From: Robin Jarry Date: Wed, 28 Feb 2024 23:55:20 +0100 Subject: commands: rename confusing constants There is an overlap between ACCOUNT and MESSAGE. Rename ACCOUNT to MESSAGE_LIST and use MESSAGE_LIST|MESSAGE_VIEWER instead of MESSAGE. Signed-off-by: Robin Jarry Reviewed-by: Tim Culverhouse --- commands/msg/pipe.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'commands/msg/pipe.go') diff --git a/commands/msg/pipe.go b/commands/msg/pipe.go index 7048e6b8..7135df01 100644 --- a/commands/msg/pipe.go +++ b/commands/msg/pipe.go @@ -29,7 +29,7 @@ func init() { } func (Pipe) Context() commands.CommandContext { - return commands.MESSAGE + return commands.MESSAGE_LIST | commands.MESSAGE_VIEWER } func (Pipe) Aliases() []string { -- cgit