diff options
author | Reto Brunner <reto@labrat.space> | 2020-05-09 11:50:30 +0200 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2020-05-11 09:47:33 -0400 |
commit | 381c1fc05f6de95accbb520769d0cc9196955cf4 (patch) | |
tree | 562c004d3153959995aaeb85660f4ead9b4e15f5 /commands/msg/modify-labels.go | |
parent | c5fdefe7afdc69fc4eefd1ccd702a60b39fc6cb9 (diff) | |
download | aerc-381c1fc05f6de95accbb520769d0cc9196955cf4.tar.gz |
commands/helper: remove duplicated method
Diffstat (limited to 'commands/msg/modify-labels.go')
-rw-r--r-- | commands/msg/modify-labels.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/msg/modify-labels.go b/commands/msg/modify-labels.go index 92899ec..f91075a 100644 --- a/commands/msg/modify-labels.go +++ b/commands/msg/modify-labels.go @@ -34,7 +34,7 @@ func (ModifyLabels) Execute(aerc *widgets.Aerc, args []string) error { if err != nil { return err } - uids, err := h.uids() + uids, err := h.markedOrSelectedUids() if err != nil { return err } |