mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Merge pull request #11 from jamhall/master
Updated Point.php to stop converting value to float
This commit is contained in:
@@ -58,7 +58,7 @@ class Point
|
||||
$this->fields = $additionalFields;
|
||||
|
||||
if ($value) {
|
||||
$this->fields['value'] = (float) $value;
|
||||
$this->fields['value'] = $value;
|
||||
}
|
||||
|
||||
if ($timestamp && !$this->isValidTimeStamp($timestamp)) {
|
||||
|
||||
Reference in New Issue
Block a user