Bugfix
This commit is contained in:
@@ -134,7 +134,7 @@ export function measurement_parse(data) {
|
||||
res.datetime = new Date(row.substring(idx + 1, idx = row.indexOf(' ', idx)));
|
||||
res.name = row.substring(idx + 3, idx = row.indexOf(': ', idx));
|
||||
value = row.substring(idx + 4, idx = row.indexOf(' _', idx));
|
||||
res.user = row.substring(idx + 3);
|
||||
res.user = row.substring(idx + 2);
|
||||
m = value.match(/^(?:(.*?)(?: (\S+))?)(\*)?(?: \((?:(.*?)(?: (\S+))?)\))?\s*$/);
|
||||
res.value = m[4] ? m[4] : m[1];
|
||||
res.unit = m[4] ? m[5] : m[2];
|
||||
|
Reference in New Issue
Block a user