mirror of
https://github.com/mjl-/mox.git
synced 2025-07-10 10:34:40 +03:00
fix output of "mox checkupdate", and specify changes to be from newest to oldest
This commit is contained in:
4
serve.go
4
serve.go
@ -235,8 +235,8 @@ requested, other TLS certificates are requested on demand.
|
||||
}
|
||||
|
||||
var cl string
|
||||
for i := len(changelog.Changes) - 1; i >= 0; i-- {
|
||||
cl += changelog.Changes[i].Text + "\n\n"
|
||||
for _, c := range changelog.Changes {
|
||||
cl += c.Text + "\n\n"
|
||||
}
|
||||
|
||||
a, err := store.OpenAccount(mox.Conf.Static.Postmaster.Account)
|
||||
|
Reference in New Issue
Block a user