2019-12-18 05:33:56 +00:00
|
|
|
package widgets
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2021-11-05 09:19:46 +00:00
|
|
|
"git.sr.ht/~rjarry/aerc/lib"
|
|
|
|
"git.sr.ht/~rjarry/aerc/models"
|
2019-12-18 05:33:56 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func msgInfoFromUids(store *lib.MessageStore, uids []uint32) ([]*models.MessageInfo, error) {
|
|
|
|
infos := make([]*models.MessageInfo, len(uids))
|
|
|
|
for i, uid := range uids {
|
|
|
|
var ok bool
|
|
|
|
infos[i], ok = store.Messages[uid]
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("uid not found")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return infos, nil
|
|
|
|
}
|