diff options
Diffstat (limited to 'widgets/account.go')
-rw-r--r-- | widgets/account.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/account.go b/widgets/account.go index 981a143a..f070df14 100644 --- a/widgets/account.go +++ b/widgets/account.go @@ -172,7 +172,7 @@ func (acct *AccountView) SelectedAccount() *AccountView { } func (acct *AccountView) SelectedMessage() (*models.MessageInfo, error) { - if len(acct.msglist.Store().Uids) == 0 { + if len(acct.msglist.Store().Uids()) == 0 { return nil, errors.New("no message selected") } return acct.msglist.Selected(), nil |