Skip to content

Commit

Permalink
fix some type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Technikte authored and mulbc committed Apr 27, 2022
1 parent 28d79c9 commit f963d68
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fritzDocsis.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@ import (
)

type channelInfo []struct {
Activesub float64 `json:"activesub"`
Activesub string `json:"activesub"`
Channel int `json:"channel"`
ChannelID int `json:"channelID"`
CorrErrors float64 `json:"corrErrors"`
FFT string `json:"fft"`
Frequency string `json:"frequency"`
Latency float64 `json:"latency"`
MER float64 `json:"mer"`
MER string `json:"mer"`
Modulation string `json:"modulation"`
Mse string `json:"mse"`
Multiplex string `json:"multiplex"`
NonCorrErrors float64 `json:"nonCorrErrors"`
PLC float64 `json:"plc"`
PLC string `json:"plc"`
PowerLevel string `json:"powerLevel"`
Type string `json:"type"`
}
Expand Down

0 comments on commit f963d68

Please sign in to comment.