diff options
Diffstat (limited to 'commands/msgview/open-link.go')
-rw-r--r-- | commands/msgview/open-link.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/msgview/open-link.go b/commands/msgview/open-link.go index eceb4232..b13f5d4f 100644 --- a/commands/msgview/open-link.go +++ b/commands/msgview/open-link.go @@ -27,7 +27,7 @@ func (*OpenLink) CompleteUrl(arg string) []string { mv := app.SelectedTabContent().(*app.MessageViewer) if mv != nil { if p := mv.SelectedMessagePart(); p != nil { - return commands.CompletionFromList(p.Links, arg) + return commands.FilterList(p.Links, arg, nil) } } return nil |