Merge tag 'v3.5.2' into v4.0

This commit is contained in:
Sean E. Russell 2020-04-29 12:06:21 -05:00
commit 8d2dfce31c
2 changed files with 8 additions and 2 deletions

View File

@ -55,7 +55,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Config file loading from `~/.config/gotop` wasn't working
- There were a number of minor issues with the config file that have been cleaned up.
## [3.5.1] - 2020-04-09
## [3.5.2] - 2020-04-28
### Fixed
- Fixes (an embarrasing) null map bug on FreeBSD (#94)
## [3.5.1] - 2020-04-09
This is a bug fix release.

View File

@ -21,7 +21,7 @@ var sensorOIDS = map[string]string{
}
func update(temps map[string]int) map[string]error {
var errors map[string]error
errors := make(map[string]error)
for k, v := range sensorOIDS {
if _, ok := temps[k]; !ok {