build: upgrade to go 1.17 and dependencies

This commit is contained in:
2021-09-01 22:08:47 +02:00
parent ff5eaf37ec
commit 7f4c139364
432 changed files with 82316 additions and 106740 deletions

View File

@ -88,7 +88,7 @@ func (store *MemoryStore) All() []string {
ERROR.Println(STR, "Trying to use memory store, but not open")
return nil
}
keys := []string{}
var keys []string
for k := range store.messages {
keys = append(keys, k)
}