Merge tag 'v3.5.2' into v4.0
This commit is contained in:
commit
8d2dfce31c
|
@ -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.
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue
Block a user