Skip to content

Commit 187e9f2

Browse files
Fixes #13 variable mismatch.
1 parent 86ad67a commit 187e9f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

InfluxData.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class InfluxData {
2727
_timestamp = " " + String(seconds) + "000000000";
2828
}
2929

30-
String toString() const { return _measurement + _tags + _values + _time; }
30+
String toString() const { return _measurement + _tags + _values + _timestamp; }
3131

3232
private:
3333
String _measurement;

0 commit comments

Comments
 (0)