diff options
Diffstat (limited to 'widgets/account.go')
-rw-r--r-- | widgets/account.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/account.go b/widgets/account.go index 31384a5..20ed345 100644 --- a/widgets/account.go +++ b/widgets/account.go @@ -215,9 +215,9 @@ func (acct *AccountView) SelectedMessage() (*models.MessageInfo, error) { return msg, nil } -func (acct *AccountView) MarkedMessages() ([]*models.MessageInfo, error) { +func (acct *AccountView) MarkedMessages() ([]uint32, error) { store := acct.Store() - return msgInfoFromUids(store, store.Marked()) + return store.Marked(), nil } func (acct *AccountView) SelectedMessagePart() *PartInfo { |