diff --git a/owrx/form/device.py b/owrx/form/device.py index 222685a..e4b5165 100644 --- a/owrx/form/device.py +++ b/owrx/form/device.py @@ -353,7 +353,7 @@ class WaterfallLevelsInput(Input):
- +
dBFS
@@ -375,7 +375,7 @@ class WaterfallLevelsInput(Input): def getValue(name): key = "{}-{}".format(self.id, name) if key in data: - return {name: data[key][0]} + return {name: float(data[key][0])} raise KeyError("waterfall key not found") try: