diff options
Diffstat (limited to 'commands/msg/move.go')
-rw-r--r-- | commands/msg/move.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/commands/msg/move.go b/commands/msg/move.go index 2e3d4385..6eca6675 100644 --- a/commands/msg/move.go +++ b/commands/msg/move.go @@ -36,8 +36,7 @@ func (Move) Execute(aerc *widgets.Aerc, args []string) error { } var createParents bool for _, opt := range opts { - switch opt.Option { - case 'p': + if opt.Option == 'p' { createParents = true } } |