Merge pull request #11 from jamhall/master

Updated Point.php to stop converting value to float
This commit is contained in:
TheCodeAssassin
2015-07-29 14:34:48 +02:00
+1 -1
View File
@@ -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)) {